aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/options
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-02-08 18:29:09 -0500
committerGitHub <noreply@github.com>2022-02-08 18:29:09 -0500
commit076733d8ad73a2cfccb910e0bb1dc71c00d8ded1 (patch)
treef09524ceb73bf6a32536664a30dbabdbd3332e55 /src/main/java/io/github/moulberry/notenoughupdates/options
parent79e2b6cc14ce934ad3882a66d693cdc5db29c31c (diff)
downloadnotenoughupdates-076733d8ad73a2cfccb910e0bb1dc71c00d8ded1.tar.gz
notenoughupdates-076733d8ad73a2cfccb910e0bb1dc71c00d8ded1.tar.bz2
notenoughupdates-076733d8ad73a2cfccb910e0bb1dc71c00d8ded1.zip
Click on the hud to send command (#78)
* Click on the hud to run the command * i forgor how much xp goes into slayer level 9 * Fix? I can't test it * fix 2 * move pet inv display tooltip to the left of the inventory to avoid conflicts Co-authored-by: nopothegamer <40329022+nopothegamer@users.noreply.github.com> Co-authored-by: Lulonaut <67191924+Lulonaut@users.noreply.github.com> Co-authored-by: Lulonaut <lulonaut@tutanota.de>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/CustomArmour.java8
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/PetOverlay.java14
2 files changed, 19 insertions, 3 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/CustomArmour.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/CustomArmour.java
index 5ebbeb46..3fe9ebeb 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/CustomArmour.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/CustomArmour.java
@@ -17,6 +17,14 @@ public class CustomArmour {
@Expose
@ConfigOption(
+ name = "Click To Open Wardrobe",
+ desc = "Click on the hud to open /wardrobe"
+ )
+ @ConfigEditorBoolean
+ public boolean sendWardrobeCommand = true;
+
+ @Expose
+ @ConfigOption(
name = "GUI Colour",
desc = "Change the colour of the GUI"
)
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/PetOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/PetOverlay.java
index e8d385b5..0880a1f8 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/PetOverlay.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/PetOverlay.java
@@ -74,6 +74,14 @@ public class PetOverlay {
@Expose
@ConfigOption(
+ name = "Pet Inventory Display",
+ desc = "Shows an overlay in your inventory showing your current pet"
+ )
+ @ConfigEditorBoolean
+ public boolean petInvDisplay = true;
+
+ @Expose
+ @ConfigOption(
name = "GUI Colour",
desc = "Change the colour of the GUI"
)
@@ -84,9 +92,9 @@ public class PetOverlay {
@Expose
@ConfigOption(
- name = "Pet Inventory Display",
- desc = "Shows an overlay in your inventory showing your current pet"
+ name = "Click To Open Pets",
+ desc = "Click on the hud to open /pets"
)
@ConfigEditorBoolean
- public boolean petInvDisplay = false;
+ public boolean sendPetsCommand = true;
}