QuestLines Icons

Adds animated icons to NPC enities. Extention Plugin for QuestLines

File Details

questlines-icons-1.5.0.jar

  • R
  • May 25, 2026
  • 489.99 KB
  • 95
  • Early Access

File Name

questlines-icons-1.5.0.jar

Supported Versions

  • Early Access

QuestLines Icons – Version 1.5.0
━━━━━━━━━━━━━━━━━━━━━━

🔌 Compatibility
• Hytale 0.5.0-pre.9.1 API migration.
    └ Vectors
        └ org.joml.Vector3d replaces com.hypixel.hytale.math.vector.Vector3d
        └ for icon entity positions; rotations switch to
        └ com.hypixel.hytale.math.vector.Rotation3f (was Vector3f), which is
        └ the type TransformComponent.setRotation now requires.
    └ Permission checks
        └ Player no longer implements CommandSender / PermissionHolder, so
        └ permPlayer.hasPermission(...) on /icons subcommands no longer
        └ compiles. Routed through
        └ PermissionsModule.get().hasPermission(context.sender().getUuid(),
        └ "questlinesicons.admin", false) to match QuestLines core.
    └ /icons icon held-item path
        └ context.senderAs(Player.class) is gone with the CommandSender
        └ split. Held-item read now goes through senderAsPlayerRef() +
        └ world.execute(...) before touching Player.getInventory(); the
        └ explicit-itemId branch still runs synchronously on the command
        └ thread.
    └ ServerVersion
        └ manifest ServerVersion switched from the old dated
        └ "2026.03.26-89796e57b" string to the semver range
        └ ">=0.5.0-pre.9 <0.6.0" so pre-9.1 (and future 0.5.x) load
        └ without the wildcard-fallback warning.