diff options
author | bowser0000 <bowser0000@gmail.com> | 2021-02-10 20:43:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-10 20:43:00 -0500 |
commit | 43923ac9043e06c1fc5fe0fea10af0bdc4324811 (patch) | |
tree | d8e32ac840ff6a2f194094a7659be73f43503414 | |
parent | e973a5e27090525713740e8b026c1d4b7c93b30e (diff) | |
parent | 21bd825c0eb2e9de970fc8b879b6901798aac52e (diff) | |
download | SkyblockMod-43923ac9043e06c1fc5fe0fea10af0bdc4324811.tar.gz SkyblockMod-43923ac9043e06c1fc5fe0fea10af0bdc4324811.tar.bz2 SkyblockMod-43923ac9043e06c1fc5fe0fea10af0bdc4324811.zip |
Merge pull request #72 from ElOxo/development
Fixxed TriviaSolver showing wrong answer because DwarvenMinesUpdate
-rw-r--r-- | src/main/java/me/Danker/DankersSkyblockMod.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/me/Danker/DankersSkyblockMod.java b/src/main/java/me/Danker/DankersSkyblockMod.java index 53b42af..b9fc0c3 100644 --- a/src/main/java/me/Danker/DankersSkyblockMod.java +++ b/src/main/java/me/Danker/DankersSkyblockMod.java @@ -246,7 +246,7 @@ public class DankersSkyblockMod { triviaSolutions.put("What is the status of Goldor?", new String[]{"Wither Soldier"}); triviaSolutions.put("What is the status of Storm?", new String[]{"Elementalist"}); triviaSolutions.put("What is the status of Necron?", new String[]{"Wither Lord"}); - triviaSolutions.put("How many total Fairy Souls are there?", new String[]{"209 Fairy Souls"}); + triviaSolutions.put("How many total Fairy Souls are there?", new String[]{"220 Fairy Souls"}); triviaSolutions.put("How many Fairy Souls are there in Spider's Den?", new String[]{"17 Fairy Souls"}); triviaSolutions.put("How many Fairy Souls are there in The End?", new String[]{"12 Fairy Souls"}); triviaSolutions.put("How many Fairy Souls are there in The Barn?", new String[]{"7 Fairy Souls"}); @@ -265,7 +265,7 @@ public class DankersSkyblockMod { triviaSolutions.put("What is the name of the person that upgrades pets?", new String[]{"Kat"}); triviaSolutions.put("What is the name of the lady of the Nether?", new String[]{"Elle"}); triviaSolutions.put("Which villager in the Village gives you a Rogue Sword?", new String[]{"Jamie"}); - triviaSolutions.put("How many unique minions are there?", new String[]{"52 Minions"}); + triviaSolutions.put("How many unique minions are there?", new String[]{"53 Minions"}); triviaSolutions.put("Which of these enemies does not spawn in the Spider's Den?", new String[]{"Zombie Spider", "Cave Spider", "Wither Skeleton", "Dashing Spooder", "Broodfather", "Night Spider"}); triviaSolutions.put("Which of these monsters only spawns at night?", new String[]{"Zombie Villager", "Ghast"}); |