aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBuggyAl <64368488+BuggyAl@users.noreply.github.com>2023-02-27 22:11:36 -0600
committerGitHub <noreply@github.com>2023-02-28 13:11:36 +0900
commitec5af946b3ef3bebcc74be0de7f9e2bd618c6c8d (patch)
tree6280288173f64399cb6fbdfb2cf6f1e02ae14265
parenta0c1dc1a29f960b5fe97ec96411e86fff9df0fd2 (diff)
downloadSkyblock-Dungeons-Guide-ec5af946b3ef3bebcc74be0de7f9e2bd618c6c8d.tar.gz
Skyblock-Dungeons-Guide-ec5af946b3ef3bebcc74be0de7f9e2bd618c6c8d.tar.bz2
Skyblock-Dungeons-Guide-ec5af946b3ef3bebcc74be0de7f9e2bd618c6c8d.zip
Merge pull request #350
* added ability to disable auto recombobulator messages * fixed spacing * removed comma * bad keyboard coming in clutch
-rw-r--r--mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/etc/FeatureDisableMessage.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/etc/FeatureDisableMessage.java b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/etc/FeatureDisableMessage.java
index 13880806..1aa0c7ab 100644
--- a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/etc/FeatureDisableMessage.java
+++ b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/features/impl/etc/FeatureDisableMessage.java
@@ -52,11 +52,12 @@ public class FeatureDisableMessage extends SimpleFeature {
new MessageData(Pattern.compile("§r.+§r§a is ready to use! Press §r.+§r§a to activate it!§r"), "Ready to use message", "\"Blah is ready to use! Press F to activate it!", "readytouse"),
new MessageData(Pattern.compile("§r.+ §r§ais now available!§r"), "Ability Available","\"blah is now available!\"", "available"),
new MessageData(Pattern.compile("§r§cThe Stone doesn't seem to do anything here\\.§r"), "Stone Message", "\"The Stone doesn't seem to do anything here\"", "stone"),
- new MessageData(Pattern.compile("§r§cNo target found!§r"), "Voodoo Doll No Target", "\"No target found!\"", "voodotarget")
+ new MessageData(Pattern.compile("§r§cNo target found!§r"), "Voodoo Doll No Target", "\"No target found!\"", "voodotarget"),
+ new MessageData(Pattern.compile("§eYour §6Auto Recombobulator §erecombobulated .+§e!§r"), "Auto Recombobulator", "\"Your Auto Recombobulator recombobulated blahblah!\"", "autorecombobulator")
};
public FeatureDisableMessage() {
- super("Misc.Chat Utils", "Disable ability messages", "Do not let ability messages show up in chatbox\nclick on Edit for more precise settings", "fixes.messagedisable", true);
+ super("Misc.Chat Utils", "Disable item messages", "Do not let item messages show up in chatbox\nclick on Edit for more precise settings", "fixes.messagedisable", true);
for (MessageData messageData : PRE_DEFINED) {
addParameter(messageData.key, new FeatureParameter<Boolean>(messageData.key, messageData.name, messageData.description, true, TCBoolean.INSTANCE));
}