Fix NPCs not spawning for some players

This commit is contained in:
Sam 2017-05-16 11:56:50 +01:00
parent f9cdddf1ad
commit 977907de61

View File

@ -100,7 +100,8 @@ public class PregameSelection implements Listener, IPacketHandler
_roleStands.put(stand, role);
}
}, 20);
// Only spawn the NPCs once all players have been loaded into the world.
}, _host.GetPlayers(true).size() * _host.TickPerTeleport + 10);
}
private void spawnKitUI(Player player, String dataKey)