aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/Danker/handlers
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2020-11-20 14:44:10 -0500
committerbowser0000 <bowser0000@gmail.com>2020-11-20 14:44:10 -0500
commitb8481811e5e25f2a710053444347295010a6155c (patch)
treee61d1ed22e4117d158ddf8c437079969d53135a8 /src/main/java/me/Danker/handlers
parent68646a34ea9080228dfe437fedcec84a41c1fd6d (diff)
downloadSkyblockMod-b8481811e5e25f2a710053444347295010a6155c.tar.gz
SkyblockMod-b8481811e5e25f2a710053444347295010a6155c.tar.bz2
SkyblockMod-b8481811e5e25f2a710053444347295010a6155c.zip
Change chat maddox to anywhere while chat is open, fix some dungeon loot
Move Adaptive Blade to F2 loot Add Last Breath to F5 loot
Diffstat (limited to 'src/main/java/me/Danker/handlers')
-rw-r--r--src/main/java/me/Danker/handlers/ConfigHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/me/Danker/handlers/ConfigHandler.java b/src/main/java/me/Danker/handlers/ConfigHandler.java
index 408849c..5a59308 100644
--- a/src/main/java/me/Danker/handlers/ConfigHandler.java
+++ b/src/main/java/me/Danker/handlers/ConfigHandler.java
@@ -319,6 +319,7 @@ public class ConfigHandler {
if (!hasKey("catacombs", "shadowAssassinChest")) writeIntConfig("catacombs", "shadowAssassinChest", 0);
if (!hasKey("catacombs", "shadowAssassinLegging")) writeIntConfig("catacombs", "shadowAssassinLegging", 0);
if (!hasKey("catacombs", "shadowAssassinBoot")) writeIntConfig("catacombs", "shadowAssassinBoot", 0);
+ if (!hasKey("catacombs", "lastBreath")) writeIntConfig("catacombs", "lastBreath", 0);
if (!hasKey("catacombs", "lividDagger")) writeIntConfig("catacombs", "lividDagger", 0);
if (!hasKey("catacombs", "shadowFury")) writeIntConfig("catacombs", "shadowFury", 0);
if (!hasKey("catacombs", "floorFiveCoins")) writeDoubleConfig("catacombs", "floorFiveCoins", 0);
@@ -338,7 +339,6 @@ public class ConfigHandler {
if (!hasKey("misc", "display")) writeStringConfig("misc", "display", "off");
if (!hasKey("misc", "autoDisplay")) writeBooleanConfig("misc", "autoDisplay", false);
if (!hasKey("misc", "skill50Time")) writeIntConfig("misc", "skill50Time", 3);
- if (!hasKey("misc", "trueChatMaddoxEnabled")) writeBooleanConfig("misc", "trueChatMaddoxEnabled", true);
if (!hasKey("misc", "cakeTime")) writeDoubleConfig("misc", "cakeTime", 0);
ScaledResolution scaled = new ScaledResolution(Minecraft.getMinecraft());
@@ -527,6 +527,7 @@ public class ConfigHandler {
lc.shadowAssChests = getInt("catacombs", "shadowAssassinChest");
lc.shadowAssLegs = getInt("catacombs", "shadowAssassinLegging");
lc.shadowAssBoots = getInt("catacombs", "shadowAssassinBoot");
+ lc.lastBreaths = getInt("catacombs", "lastBreath");
lc.lividDaggers = getInt("catacombs", "lividDagger");
lc.shadowFurys = getInt("catacombs", "shadowFury");
lc.f5CoinsSpent = getDouble("catacombs", "floorFiveCoins");
@@ -547,7 +548,6 @@ public class ConfigHandler {
ds.display = getString("misc", "display");
ds.auto = getBoolean("misc", "autoDisplay");
TheMod.SKILL_TIME = getInt("misc", "skill50Time") * 20;
- tf.trueChatMaddoxEnabled = getBoolean("misc", "trueChatMaddoxEnabled");
TheMod.cakeTime = getDouble("misc", "cakeTime");
final MoveCommand moc = new MoveCommand();