aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/Danker/gui/DankerGui.java
diff options
context:
space:
mode:
authorRabbitType99 <luis.be@gmx.de>2021-03-13 20:11:26 +0100
committerRabbitType99 <luis.be@gmx.de>2021-03-13 20:11:26 +0100
commit428f8e6ecdff1ea461d086633a86283048cedcfa (patch)
treeb451f59c5e1eb69b4e74e73904243a448bc8a136 /src/main/java/me/Danker/gui/DankerGui.java
parent78dd4e9aad740f6db42e0f28eac0ffe613cce381 (diff)
downloadSkyblockMod-428f8e6ecdff1ea461d086633a86283048cedcfa.tar.gz
SkyblockMod-428f8e6ecdff1ea461d086633a86283048cedcfa.tar.bz2
SkyblockMod-428f8e6ecdff1ea461d086633a86283048cedcfa.zip
Added Arachne highlighting, Added missing Text in README.md
Diffstat (limited to 'src/main/java/me/Danker/gui/DankerGui.java')
-rw-r--r--src/main/java/me/Danker/gui/DankerGui.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main/java/me/Danker/gui/DankerGui.java b/src/main/java/me/Danker/gui/DankerGui.java
index fff4d9e..b0409fc 100644
--- a/src/main/java/me/Danker/gui/DankerGui.java
+++ b/src/main/java/me/Danker/gui/DankerGui.java
@@ -30,6 +30,7 @@ public class DankerGui extends GuiScreen {
private GuiButton puzzleSolvers;
private GuiButton experimentationTableSolvers;
private GuiButton skillTracker;
+ private GuiButton highlightArachne;
// Toggles
private GuiButton gparty;
private GuiButton coords;
@@ -70,7 +71,7 @@ public class DankerGui extends GuiScreen {
private GuiButton necronNotifications;
private GuiButton bonzoTimer;
private GuiButton autoSkillTracker;
-
+
public DankerGui(int page) {
this.page = page;
}
@@ -144,6 +145,9 @@ public class DankerGui extends GuiScreen {
shadowFury = new GuiButton(0, width / 2 - 100, (int) (height * 0.5), "Block Shadow Fury ability: " + Utils.getColouredBoolean(ToggleCommand.shadowFuryToggled));
specialHoe = new GuiButton(0, width / 2 - 100, (int) (height * 0.6), "Block Special Hoe right click: " + Utils.getColouredBoolean(ToggleCommand.specialHoeRightClick));
melodyTooltips = new GuiButton(0, width / 2 - 100, (int) (height * 0.7), "Hide tooltips in Melody's Harp: " + Utils.getColouredBoolean(ToggleCommand.melodyTooltips));
+ //Page 7
+ highlightArachne =new GuiButton(0, width / 2 - 100, (int) (height * 0.1), "Highlight Arachne: " + Utils.getColouredBoolean(ToggleCommand.highlightArachne));
+
switch (page) {
case 1:
@@ -211,6 +215,8 @@ public class DankerGui extends GuiScreen {
this.buttonList.add(melodyTooltips);
this.buttonList.add(backPage);
break;
+ case 7:
+ this.buttonList.add(highlightArachne);
}
this.buttonList.add(githubLink);