Changed the boatType attribute from all around the place from String lit to enum

#story[1274]
This commit is contained in:
William Muir
2017-09-22 21:00:28 +12:00
parent da8c91f5c1
commit 22fdf1e4ac
13 changed files with 28 additions and 38 deletions
@@ -31,7 +31,7 @@ public class PlayerCell {
this.playerId = playerId;
this.name = yacht.getBoatName();
this.boatColor = yacht.getColour();
this.boatType = BoatMeshType.getBoatMeshType(yacht.getBoatType());
this.boatType = yacht.getBoatType();
}
public void initialize() {
@@ -111,8 +111,8 @@ public class BoatCustomizeController implements Initializable{
this.lobbyController = lobbyController;
}
public void setCurrentBoat(String boatType) {
currentBoat = BoatMeshType.getBoatMeshType(boatType);
public void setCurrentBoat(BoatMeshType boatType) {
currentBoat = boatType;
displayCurrentBoat();
}