Merge pull request #700 from l2-/prayerEnhanceTimerFix

fix prayer enhance timer. its actually 10 seconds shorter than 5 minutes
This commit is contained in:
Tomas Slusny
2018-03-02 13:09:17 +01:00
committed by GitHub

View File

@@ -66,7 +66,7 @@ public enum GameTimer
EXSUPERANTIFIRE("exsuperantifire", "Extended Super AntiFire", 6, ChronoUnit.MINUTES),
SANFEW("sanfew", "Sanfew serum", 6, ChronoUnit.MINUTES),
OVERLOAD_RAID("overloadraid", "Overload", 5, ChronoUnit.MINUTES),
PRAYER_ENHANCE("prayerenhance", "Prayer enhance", 5, ChronoUnit.MINUTES);
PRAYER_ENHANCE("prayerenhance", "Prayer enhance", 290, ChronoUnit.SECONDS);
@Getter
private final String imageResource;