Remove special cased wizard death from loot manage

Remove special cased wizard death animations from loot manager as as of
latest OSRS update this now works normally:

The Elemental Wizards south of Falador now give loot at the end of their
death animation rather than the beginning.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-08-02 12:43:19 +02:00
parent 4ce0f31846
commit 64c71385a9

View File

@@ -60,11 +60,7 @@ import net.runelite.client.events.PlayerLootReceived;
public class LootManager
{
private static final Map<Integer, Integer> NPC_DEATH_ANIMATIONS = ImmutableMap.of(
NpcID.CAVE_KRAKEN, AnimationID.CAVE_KRAKEN_DEATH,
NpcID.AIR_WIZARD, AnimationID.WIZARD_DEATH,
NpcID.WATER_WIZARD, AnimationID.WIZARD_DEATH,
NpcID.EARTH_WIZARD, AnimationID.WIZARD_DEATH,
NpcID.FIRE_WIZARD, AnimationID.WIZARD_DEATH
NpcID.CAVE_KRAKEN, AnimationID.CAVE_KRAKEN_DEATH
);
private final EventBus eventBus;