Updated North, South, East, and West Spawns and Centers

This commit is contained in:
Joseph Prezioso Jr 2016-03-15 20:12:09 -04:00
parent 4e85a315f9
commit 5fdd3e0872
1 changed files with 11 additions and 11 deletions

View File

@ -458,34 +458,34 @@ public class Spawn extends MiniPlugin
return Bukkit.getWorld("world");
}
public static Location getSouthTown()
public static Location getWestTown()
{
return new Location(getSpawnWorld(), -6, 70, 295);
return new Location(getSpawnWorld(), -434.5, 63, 8.5);
}
public static Location getSouthTownCenter()
public static Location getWestTownCenter()
{
return new Location(getSpawnWorld(), -6, 70, 312);
return new Location(getSpawnWorld(), -425.5, 72, 8.5);
}
public static Location getNorthTown()
public static Location getEastTown()
{
return new Location(getSpawnWorld(), 2, 66, -325);
return new Location(getSpawnWorld(), 434.5, 63, -8.5);
}
public static Location getNorthTownCenter()
public static Location getEastTownCenter()
{
return new Location(getSpawnWorld(), 7, 75, -311);
return new Location(getSpawnWorld(), 424.5, 72, -8.5);
}
public static Location getNorthSpawn()
{
return new Location(getSpawnWorld(), 8.5, 200, -383.5);
return new Location(getSpawnWorld(), 8.5, 200, -393.5);
}
public static Location getWestSpawn()
public static Location getSouthSpawn()
{
return new Location(getSpawnWorld(), -295.5, 207, 6.5);
return new Location(getSpawnWorld(), 8.5, 20, 390.5);
}
public boolean isCombatTagged(Player player)