aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/PetOverlay.java
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2024-07-14 02:37:01 +1000
committerGitHub <noreply@github.com>2024-07-13 18:37:01 +0200
commit1192fd943f761ad983fc55da51161c4e294076f7 (patch)
treed4b6117406e3bf3dabe475ae615501f44ae3e379 /src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/PetOverlay.java
parent8c25d6608e5badde10cdf3e70d166c636ad65082 (diff)
downloadnotenoughupdates-1192fd943f761ad983fc55da51161c4e294076f7.tar.gz
notenoughupdates-1192fd943f761ad983fc55da51161c4e294076f7.tar.bz2
notenoughupdates-1192fd943f761ad983fc55da51161c4e294076f7.zip
Add option for pet item icon instead of words (#1233)
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/PetOverlay.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/PetOverlay.java12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/PetOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/PetOverlay.java
index 8a0f7884..e015c05d 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/PetOverlay.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/PetOverlay.java
@@ -20,11 +20,11 @@
package io.github.moulberry.notenoughupdates.options.separatesections;
import com.google.gson.annotations.Expose;
-import io.github.moulberry.notenoughupdates.core.config.Position;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigEditorDraggableList;
import io.github.moulberry.moulconfig.annotations.ConfigEditorDropdown;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
+import io.github.moulberry.notenoughupdates.core.config.Position;
import java.util.ArrayList;
import java.util.Arrays;
@@ -65,13 +65,21 @@ public class PetOverlay {
@Expose
@ConfigOption(
name = "Pet Overlay Icon",
- desc = "Show the icon of the pet you have equiped in the overlay"
+ desc = "Show the icon of the pet you have equipped in the overlay"
)
@ConfigEditorBoolean
public boolean petOverlayIcon = true;
@Expose
@ConfigOption(
+ name = "Pet Item Icon",
+ desc = "Show the icon of the pet item you have equipped in the overlay"
+ )
+ @ConfigEditorBoolean
+ public boolean petItemIcon = false;
+
+ @Expose
+ @ConfigOption(
name = "Pet Info Overlay Style",
desc = "Change the style of the Pet Info overlay"
)