Fix shop coordinates being slightly off-center due to the new map

This commit is contained in:
Alexander Meech 2018-01-29 07:12:49 -05:00
parent 3ebc898ec1
commit 4832bcbe46
1 changed files with 3 additions and 3 deletions

View File

@ -457,12 +457,12 @@ public class Spawn extends MiniPlugin
public static Location getWestTown()
{
return new Location(getSpawnWorld(), -440.91, 68, 23.08);
return new Location(getSpawnWorld(), -439.91, 68, 22.08);
}
public static Location getWestTownCenter()
{
return new Location(getSpawnWorld(), -425, 69, 8);
return new Location(getSpawnWorld(), -424, 69, 7);
}
public static Location getEastTown()
@ -539,4 +539,4 @@ public class Spawn extends MiniPlugin
{
return _clansManager;
}
}
}