Spawn players with equal distance from ladder on KOTL
This commit is contained in:
parent
17c51f03ad
commit
50175f9453
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user