From f62a7c280a349f1555bd2deb4bc4a1f81f128f3c Mon Sep 17 00:00:00 2001 From: FlashBasedGod Date: Sun, 18 Apr 2021 18:19:45 -0230 Subject: [PATCH] ground items: Add Tempoross instance to normal despawn timers --- .../client/plugins/grounditems/GroundItemsOverlay.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/grounditems/GroundItemsOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/grounditems/GroundItemsOverlay.java index f565652b11..e939470613 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/grounditems/GroundItemsOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/grounditems/GroundItemsOverlay.java @@ -83,6 +83,7 @@ public class GroundItemsOverlay extends Overlay private static final int KRIL_TSUTSAROTH_REGION = 11603; private static final int KREEARRA_REGION = 11346; private static final int NIGHTMARE_REGION = 15515; + private static final int TEMPOROSS_REGION = 12078; private final Client client; private final GroundItemsPlugin plugin; @@ -452,9 +453,10 @@ public class GroundItemsOverlay extends Overlay } } else if (playerRegionID == ZILYANA_REGION || playerRegionID == GRAARDOR_REGION || - playerRegionID == KRIL_TSUTSAROTH_REGION || playerRegionID == KREEARRA_REGION || playerRegionID == NIGHTMARE_REGION) + playerRegionID == KRIL_TSUTSAROTH_REGION || playerRegionID == KREEARRA_REGION || + playerRegionID == NIGHTMARE_REGION || playerRegionID == TEMPOROSS_REGION) { - // GWD and Nightmare instances use the normal despawn timers + // GWD, Nightmare, and Tempoross instances use the normal despawn timers despawnTime = spawnTime.plus(groundItem.getLootType() == LootType.DROPPED ? DESPAWN_TIME_DROP : DESPAWN_TIME_LOOT);