This commit is contained in:
Cheese 2015-12-14 15:21:43 +11:00
parent 42244ae798
commit c34ac3ec52
3 changed files with 4 additions and 4 deletions

View File

@ -475,7 +475,7 @@ public class Christmas extends SoloGame
} }
else else
{ {
SetCustomWinMessage(player, "You earned " + C.cYellow + "Winter Chest x2"); SetCustomWinMessage(player, "You earned " + C.cYellow + "2x Winter Holiday Treasure");
Manager.GetTaskManager().completedTask(new Callback<Boolean>() Manager.GetTaskManager().completedTask(new Callback<Boolean>()
{ {

View File

@ -49,8 +49,8 @@ public class SnowmanBoss
_minions.add(new SnowmanMinion(_spawn.getWorld().spawn(_spawn, Snowman.class))); _minions.add(new SnowmanMinion(_spawn.getWorld().spawn(_spawn, Snowman.class)));
_heart = _spawn.getWorld().spawn(_spawn, IronGolem.class); _heart = _spawn.getWorld().spawn(_spawn, IronGolem.class);
_heart.setMaxHealth(1000); _heart.setMaxHealth(1400);
_heart.setHealth(1000); _heart.setHealth(1400);
UtilEnt.Vegetate(_heart); UtilEnt.Vegetate(_heart);
Host.CreatureAllowOverride = false; Host.CreatureAllowOverride = false;

View File

@ -254,7 +254,7 @@ public class SnowmanMaze
//Spawn //Spawn
if (!Host.GetSleigh().HasPresent(_present)) if (!Host.GetSleigh().HasPresent(_present))
{ {
while (_ents.size() < 36) while (_ents.size() < 44)
{ {
Location loc = UtilAlg.Random(_spawns); Location loc = UtilAlg.Random(_spawns);