aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/de/hype/bbsentials/packets
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/de/hype/bbsentials/packets')
-rw-r--r--src/main/java/de/hype/bbsentials/packets/packets/SplashNotifyPacket.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/java/de/hype/bbsentials/packets/packets/SplashNotifyPacket.java b/src/main/java/de/hype/bbsentials/packets/packets/SplashNotifyPacket.java
index ab0076e..e0b4fa4 100644
--- a/src/main/java/de/hype/bbsentials/packets/packets/SplashNotifyPacket.java
+++ b/src/main/java/de/hype/bbsentials/packets/packets/SplashNotifyPacket.java
@@ -6,9 +6,11 @@ import de.hype.bbsentials.constants.enviromentShared.Islands;
public class SplashNotifyPacket extends AbstractPacket {
- public SplashNotifyPacket(int hub, String splasherUsername, String location, Islands hubType, String extraMessage, boolean lessWaste) {
+ public SplashNotifyPacket(int splashId, int hub, String splasherUsername, String location, Islands hubType, String extraMessage, boolean lessWaste) {
super(1, 1); //Min and Max supported Version
this.hub = hub;
+ this.splashId = splashId;
+
this.lessWaste = lessWaste;
this.splasherUsername = splasherUsername;
this.location = location;
@@ -17,6 +19,7 @@ public class SplashNotifyPacket extends AbstractPacket {
}
public final int hub;
+ public final int splashId;
public final boolean lessWaste;
public final String splasherUsername;
public final String location;