Fix Eternal get reason

This commit is contained in:
Sam 2017-10-13 22:53:20 +01:00 committed by cnr
parent 8fb3bf82f4
commit 6f4d68087f
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ public enum Achievement
new String[]{"Smash 200 Flaming Pumpkins,",
"during Halloween 2017!"},
new int[][]{ new int[]{0,0,8000}},
new int[]{2000},
new int[]{200},
"",
new String[0],
AchievementCategory.HOLIDAY),

View File

@ -50,7 +50,7 @@ public class GiveawayMessageHandler implements CommandCallback
String playerName = message.getPlayerName();
int count = message.getEternalCount();
String countString = count + UtilTime.getDayOfMonthSuffix(count);
String chatMessage = C.cPurple + playerName + C.cWhite + " found Eternal Rank in an " + C.cPurple + "Easter Egg Basket";
String chatMessage = C.cPurple + playerName + C.cWhite + " found Eternal Rank in a " + C.cPurple + "Flaming Pumpkin";
UtilTextMiddle.display(C.cDPurple + C.Bold + "ETERNAL", chatMessage, 20, 80, 20, UtilServer.getPlayers());
World world = UtilServer.getPlayers().length > 0 ? UtilServer.getPlayers()[0].getWorld() : Bukkit.getWorlds().get(0);
LightFlicker lightFlicker = new LightFlicker(world);