Pushed to v2.1.3
This commit is contained in:
parent
287dffee43
commit
8ba1734992
4 changed files with 6 additions and 6 deletions
8
pom.xml
8
pom.xml
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<groupId>nl.SBDeveloper</groupId>
|
<groupId>nl.SBDeveloper</groupId>
|
||||||
<artifactId>ThemeParkPlus</artifactId>
|
<artifactId>ThemeParkPlus</artifactId>
|
||||||
<version>2.1.2</version>
|
<version>2.1.3</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>ThemeParkPlus</name>
|
<name>ThemeParkPlus</name>
|
||||||
|
@ -124,15 +124,15 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spigotmc</groupId>
|
<groupId>org.spigotmc</groupId>
|
||||||
<artifactId>spigot-api</artifactId>
|
<artifactId>spigot-api</artifactId>
|
||||||
<version>1.16.1-R0.1-SNAPSHOT</version>
|
<version>1.16.4-R0.1-SNAPSHOT</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>me.paradoxpixel</groupId>
|
<groupId>me.paradoxpixel</groupId>
|
||||||
<artifactId>themepark</artifactId>
|
<artifactId>themepark</artifactId>
|
||||||
<version>2.1.1</version>
|
<version>2.1.3</version>
|
||||||
<scope>system</scope>
|
<scope>system</scope>
|
||||||
<systemPath>${pom.basedir}/src/lib/themepark-2.1.1.jar</systemPath>
|
<systemPath>${pom.basedir}/src/lib/themepark-2.1.3.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
|
|
Binary file not shown.
|
@ -11,7 +11,7 @@ public enum WalkingDirection {
|
||||||
SOUTH(BlockFace.SOUTH),
|
SOUTH(BlockFace.SOUTH),
|
||||||
WEST(BlockFace.WEST);
|
WEST(BlockFace.WEST);
|
||||||
|
|
||||||
private BlockFace blockFace;
|
private final BlockFace blockFace;
|
||||||
|
|
||||||
WalkingDirection(BlockFace blockFace) {
|
WalkingDirection(BlockFace blockFace) {
|
||||||
this.blockFace = blockFace;
|
this.blockFace = blockFace;
|
||||||
|
|
|
@ -14,7 +14,7 @@ public class WaitingRow {
|
||||||
@Getter @Setter private String regionID;
|
@Getter @Setter private String regionID;
|
||||||
@Getter @Setter private transient int waitingPlayers = 0;
|
@Getter @Setter private transient int waitingPlayers = 0;
|
||||||
@Getter private transient double waitingTimeMinutes = 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) {
|
public WaitingRow(String rideID, String regionID) {
|
||||||
this.rideID = rideID;
|
this.rideID = rideID;
|
||||||
|
|
Reference in a new issue