diff options
author | TheColdPot <66854652+TheColdPot@users.noreply.github.com> | 2022-10-05 17:20:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 17:20:04 +0800 |
commit | 32a141133b636b6a50a01b0e7698c12690246f72 (patch) | |
tree | da6e25895858a50b37b38b3778960d9d4afb828a /src/main/java/me/xmrvizzy/skyblocker/skyblock | |
parent | 87ae5a89f9fb8b9ddb5ac11acbeb5d41745ed3e5 (diff) | |
download | Skyblocker-32a141133b636b6a50a01b0e7698c12690246f72.tar.gz Skyblocker-32a141133b636b6a50a01b0e7698c12690246f72.tar.bz2 Skyblocker-32a141133b636b6a50a01b0e7698c12690246f72.zip |
Add a new one to `answers`.
Diffstat (limited to 'src/main/java/me/xmrvizzy/skyblocker/skyblock')
-rw-r--r-- | src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/Trivia.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/Trivia.java b/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/Trivia.java index 2d4d565e..b437ce10 100644 --- a/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/Trivia.java +++ b/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/Trivia.java @@ -16,7 +16,7 @@ public class Trivia extends ChatPatternListener { private List<String> solutions = Collections.emptyList(); public Trivia() { - super("^ +(?:([A-Za-z' ]*\\?)|§6 ([ⓐⓑⓒ]) §a([a-zA-Z0-9 ]+))$"); + super("^ +(?:([A-Za-z,' ]*\\?)|§6 ([ⓐⓑⓒ]) §a([a-zA-Z0-9 ]+))$"); } @Override @@ -64,6 +64,7 @@ public class Trivia extends ChatPatternListener { answers.put("What is the status of Goldor?", new String[]{"The Wither Lords"}); answers.put("What is the status of Storm?", new String[]{"The Wither Lords"}); answers.put("What is the status of Necron?", new String[]{"The Wither Lords"}); + answers.put("What is the status of Maxor, Storm, Goldor and Necron?", new String[]{"The Wither Lords"}); answers.put("How many total Fairy Souls are there?", new String[]{"238 Fairy Souls"}); answers.put("How many Fairy Souls are there in Spider's Den?", new String[]{"19 Fairy Souls"}); answers.put("How many Fairy Souls are there in The End?", new String[]{"12 Fairy Souls"}); |