aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/rosegoldaddons/Config.java
diff options
context:
space:
mode:
authorRoseGoldIsntGay <yoavkau@gmail.com>2022-01-13 18:50:22 +0200
committerRoseGoldIsntGay <yoavkau@gmail.com>2022-01-13 18:50:22 +0200
commit0acbdcf7cd4ee78544b8cf7fbf8fa48dd395f693 (patch)
tree6d99f8779e4cde0aa3d8d40f8501b7e3933b5809 /src/main/java/rosegoldaddons/Config.java
parentf06690a35ed7040db0aed7cec1f8a392eeffa3e7 (diff)
downloadRGA-0acbdcf7cd4ee78544b8cf7fbf8fa48dd395f693.tar.gz
RGA-0acbdcf7cd4ee78544b8cf7fbf8fa48dd395f693.tar.bz2
RGA-0acbdcf7cd4ee78544b8cf7fbf8fa48dd395f693.zip
2.5.1
Diffstat (limited to 'src/main/java/rosegoldaddons/Config.java')
-rw-r--r--src/main/java/rosegoldaddons/Config.java20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/main/java/rosegoldaddons/Config.java b/src/main/java/rosegoldaddons/Config.java
index 7470c7d..bee9391 100644
--- a/src/main/java/rosegoldaddons/Config.java
+++ b/src/main/java/rosegoldaddons/Config.java
@@ -11,10 +11,6 @@ import java.util.Comparator;
public class Config extends Vigilant {
public static Config INSTANCE = new Config();
- @Property(type = PropertyType.SWITCH, name = "Gui Lag", description = "trole",
- category = "RoseGoldAddons", subcategory = "General")
- public boolean guilag = true;
-
@Property(type = PropertyType.SWITCH, name = "Auto Start Dungeon + Ready", description = "Automatically starts the dungeon and gets ready.",
category = "Dungeons", subcategory = "General")
public boolean AutoReady = true;
@@ -117,10 +113,14 @@ public class Config extends Vigilant {
category = "Mining", subcategory = "General")
public boolean mithrilLook = false;
- @Property(type = PropertyType.SWITCH, name = "Skip Titanium", description = "Mithril nuker will now ignore titanium",
+ @Property(type = PropertyType.SWITCH, name = "Skip Titanium", description = "Mithril nuker will ignore titanium",
category = "Mining", subcategory = "General")
public boolean ignoreTitanium = false;
+ @Property(type = PropertyType.SWITCH, name = "Include Ores", description = "Hardstone Nuker will also nuke ores",
+ category = "Mining", subcategory = "General")
+ public boolean includeOres = false;
+
@Property(type = PropertyType.SWITCH, name = "Auto Slayer", description = "Automatically use batphone",
category = "RoseGoldAddons", subcategory = "General")
public boolean autoSlayer = false;
@@ -133,10 +133,18 @@ public class Config extends Vigilant {
category = "RoseGoldAddons", subcategory = "General", options = {"None", "Zombie 3", "Zombie 4", "Zombie 5", "Spider 3", "Spider 4", "Sven 3", "Sven 4", "Enderman 2", "Enderman 3", "Enderman 4"})
public int slayerTypeIndex = 0;
- @Property(type = PropertyType.SWITCH, name = "Hilarity", description = "",
+ @Property(type = PropertyType.SWITCH, name = "Potato Mode", description = "This brings back memories...",
+ category = "RoseGoldAddons", subcategory = "General")
+ public boolean guilag = false;
+
+ @Property(type = PropertyType.SWITCH, name = "Hilarity", description = "Those pesky admins!",
category = "RoseGoldAddons", subcategory = "General")
public boolean funnyStuff = true;
+ @Property(type = PropertyType.SWITCH, name = "Nucleus ESP", description = "ESP for rare items dropped from nucleus",
+ category = "ESP", subcategory = "General")
+ public boolean nucleusESP = false;
+
public Config() {
super(new File("./config/rosegoldaddons/config.toml"), "RoseGoldAddons", new JVMAnnotationPropertyCollector(), new ConfigSorting());
initialize();