Hotfix flying in arena issue
Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Ursprung
d462d7d008
Commit
eb6f45a485
@ -229,9 +229,12 @@ public class FightTeam implements IFightTeam{
|
||||
}
|
||||
|
||||
private void allowFlying(boolean fly){
|
||||
for(FightPlayer p : players)
|
||||
if(p.getPlayer() != null)
|
||||
for(FightPlayer p : players){
|
||||
if(p.getPlayer() != null){
|
||||
p.getPlayer().setAllowFlight(fly);
|
||||
p.getPlayer().setFlying(fly);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void pasteSchematic(){
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren