Merge pull request #4641 from deathbeam/remove-wizard-special-case

Remove special cased wizard death from loot manage
This commit is contained in:
Tomas Slusny
2018-08-02 13:01:22 +02:00
committed by GitHub

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;