Fixing visibility.

This commit is contained in:
Sarah 2015-12-19 00:48:42 +01:00
parent afa45c47ca
commit 6c5e3d7509
1 changed files with 6 additions and 6 deletions

View File

@ -131,13 +131,13 @@ public abstract class GameTutorial
public void run()
{
// Player visibility/fly mode
for(Player player : Manager.GetGame().GetPlayers(true))
for(Player other : Manager.GetGame().GetPlayers(false))
{
for(Player other : Manager.GetGame().GetPlayers(true))
{
player.showPlayer(other);
}
}
if(player == other)
continue;
other.showPlayer(player);
}
player.setAllowFlight(false);
player.setFlying(false);
}