From 4f2cc9c33fcc3fb42957cb262a7966a7383d6576 Mon Sep 17 00:00:00 2001 From: oplosthee Date: Sat, 27 Jan 2018 16:04:38 +0100 Subject: [PATCH] Change duration of Super Antifire Potions from 2 to 3 minutes --- .../main/java/net/runelite/client/plugins/timers/GameTimer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/timers/GameTimer.java b/runelite-client/src/main/java/net/runelite/client/plugins/timers/GameTimer.java index ad551e297b..7e7094bcbb 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/timers/GameTimer.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/timers/GameTimer.java @@ -47,7 +47,7 @@ public enum GameTimer FULLTB("teleblock", "Full Teleblock", 5, ChronoUnit.MINUTES), HALFTB("teleblock", "Half Teleblock", 150, ChronoUnit.SECONDS), ANTIVENOMPLUS("antivenomplus", "Anti-venom+", 3, ChronoUnit.MINUTES), - SUPERANTIFIRE("superantifire", "Super antifire", 2, ChronoUnit.MINUTES), + SUPERANTIFIRE("superantifire", "Super antifire", 3, ChronoUnit.MINUTES), ANTIDOTEPLUSPLUS("antidoteplusplus", "Antidote++", 12, ChronoUnit.MINUTES), BIND("bind", "Bind", GraphicID.BIND, 5, ChronoUnit.SECONDS), HALFBIND("bind", "Half Bind", GraphicID.BIND, 2500, ChronoUnit.MILLIS),