Spawn players with equal distance from ladder on KOTL

This commit is contained in:
Thanos paravantis 2016-04-19 14:27:48 +03:00
parent 17c51f03ad
commit 50175f9453

View File

@ -55,7 +55,7 @@ public class ChallengeKingOfTheLadder extends Challenge
{
for (int z = -(size); z <= size; z++)
{
if (x % 2 == 0 && z % 2 == 0)
if (Math.abs(x) == size || Math.abs(z) == size)
{
spawns.add(getCenter().add(x + 0.5, 1.1, z + 0.5));
}