Pushed to v2.1.3
This commit is contained in:
parent
287dffee43
commit
8ba1734992
4 changed files with 6 additions and 6 deletions
Binary file not shown.
|
@ -11,7 +11,7 @@ public enum WalkingDirection {
|
|||
SOUTH(BlockFace.SOUTH),
|
||||
WEST(BlockFace.WEST);
|
||||
|
||||
private BlockFace blockFace;
|
||||
private final BlockFace blockFace;
|
||||
|
||||
WalkingDirection(BlockFace blockFace) {
|
||||
this.blockFace = blockFace;
|
||||
|
|
|
@ -14,7 +14,7 @@ public class WaitingRow {
|
|||
@Getter @Setter private String regionID;
|
||||
@Getter @Setter private transient int waitingPlayers = 0;
|
||||
@Getter private transient double waitingTimeMinutes = 0;
|
||||
private ArrayList<Location> signLocations = new ArrayList<>();
|
||||
private final ArrayList<Location> signLocations = new ArrayList<>();
|
||||
|
||||
public WaitingRow(String rideID, String regionID) {
|
||||
this.rideID = rideID;
|
||||
|
|
Reference in a new issue