From 64c71385a979ef945558b7be0e706ac2dffb1044 Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Thu, 2 Aug 2018 12:43:19 +0200 Subject: [PATCH] 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 --- .../src/main/java/net/runelite/client/game/LootManager.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/game/LootManager.java b/runelite-client/src/main/java/net/runelite/client/game/LootManager.java index 91973b2259..b9bf796ca1 100644 --- a/runelite-client/src/main/java/net/runelite/client/game/LootManager.java +++ b/runelite-client/src/main/java/net/runelite/client/game/LootManager.java @@ -60,11 +60,7 @@ import net.runelite.client.events.PlayerLootReceived; public class LootManager { private static final Map 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;