From 8448570b5745404ade74525ab0225ee134b3123e Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Wed, 11 Apr 2018 10:34:01 +0200 Subject: [PATCH] Change magic imbue timer to 12 seconds Correct time is 12 seconds not 15. Signed-off-by: Tomas Slusny --- .../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 0838bf65bf..82d576ed87 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 @@ -42,7 +42,7 @@ public enum GameTimer EXANTIFIRE("exantifire", "Extended antifire", 12, ChronoUnit.MINUTES), OVERLOAD("overload", "Overload", 5, ChronoUnit.MINUTES), CANNON("cannon", "Cannon", 25, ChronoUnit.MINUTES), - MAGICIMBUE("magicimbue", "Magic imbue", 15, ChronoUnit.SECONDS), + MAGICIMBUE("magicimbue", "Magic imbue", 12, ChronoUnit.SECONDS), FULLTB("teleblock", "Full Teleblock", 5, ChronoUnit.MINUTES), HALFTB("teleblock", "Half Teleblock", 150, ChronoUnit.SECONDS), ANTIVENOMPLUS("antivenomplus", "Anti-venom+", 3, ChronoUnit.MINUTES),