From ee8b2e73e8ca2e59bb68bdbf0ab80abb901ccfdf Mon Sep 17 00:00:00 2001 From: HungPV <49741222+9-9-9-9@users.noreply.github.com> Date: Tue, 5 Apr 2022 23:15:33 +0700 Subject: [PATCH] 2.9.0 supports R15 for T18 (#69) --- pom.xml | 2 +- src/main/java/bh/bot/common/types/UserConfig.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 01de016c..b24ec749 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 bh.bot 99bot - 2.8.6 + 2.9.0 diff --git a/src/main/java/bh/bot/common/types/UserConfig.java b/src/main/java/bh/bot/common/types/UserConfig.java index a148367a..7ab4256c 100644 --- a/src/main/java/bh/bot/common/types/UserConfig.java +++ b/src/main/java/bh/bot/common/types/UserConfig.java @@ -15,7 +15,7 @@ public class UserConfig { public static final byte modeHeroic = 3; private static final byte raidLevelMin = 1; - private static final byte raidLevelMax = 14; + private static final byte raidLevelMax = 15; private static final byte worldBossLevelMin = 1; private static final byte worldBossLevelMax = 8; private static final byte expeditionPlaceMin = 1; @@ -169,7 +169,7 @@ public static String getWorldBossLevelDesc(int level) { case 7: return "The Ignited Abyss"; case 8: - return "The Wolf's Deception (T13-T17)"; + return "The Wolf's Deception (T13-T18)"; default: return "Unknown (T?-T?)"; }