Update schematic files

This commit is contained in:
Shaun Bennett 2015-08-26 13:39:13 -07:00
parent e6c4227a4f
commit 0dd79419eb
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ public class KingHill extends WorldEvent
// TODO load hills from schematic folder with extra hill data from a config file?
try
{
LOADED_HILLS.add(new HillData("ClansKOTHFinal.schematic", 28, 28, 28, 5, 5, 5));
LOADED_HILLS.add(new HillData("ClansKOTH.schematic", 28, 28, 28, 5, 5, 5));
}
catch (IOException e)
{

View File

@ -28,7 +28,7 @@ public class SlimeBoss extends WorldEvent
public SlimeBoss(DamageManager damageManager, BlockRestore blockRestore, ConditionManager conditionManager,
ProjectileManager projectileManager, Location corner)
{
super(damageManager, blockRestore, conditionManager, "Slime King", corner, "schematic/ClansSlimeFinal.schematic");
super(damageManager, blockRestore, conditionManager, "Slime King", corner, "schematic/ClansSlime.schematic");
_projectileManager = projectileManager;
}