Fixed crash when connecting to a multiplayer server

This commit is contained in:
Anuken
2018-01-08 20:04:24 -05:00
parent 530505c3a0
commit 30d06b9b08
2 changed files with 4 additions and 32 deletions

View File

@@ -22,9 +22,9 @@ public class Player extends DestructibleEntity implements Syncable{
public String name = "name";
public boolean isAndroid;
public Weapon weaponLeft = Weapon.blaster;
public Weapon weaponRight = Weapon.blaster;
public Mech mech = Mech.standard;
public transient Weapon weaponLeft = Weapon.blaster;
public transient Weapon weaponRight = Weapon.blaster;
public transient Mech mech = Mech.standard;
public float angle;
public transient float targetAngle = 0f;