diff options
author | hackthetime <l4bg0jb7@duck.com> | 2023-09-22 11:17:33 +0200 |
---|---|---|
committer | hackthetime <l4bg0jb7@duck.com> | 2023-09-22 11:17:33 +0200 |
commit | ac682a3b1d956ae209dfe4d4e9126bb2261f955e (patch) | |
tree | 0df000fe721abb3f871bd2907d39c8f32238c876 /src/main/java/de/hype/bbsentials/packets | |
parent | f30090beaa3f116ec3fcbe103fc72a393e5f9162 (diff) | |
download | BBsentials-ac682a3b1d956ae209dfe4d4e9126bb2261f955e.tar.gz BBsentials-ac682a3b1d956ae209dfe4d4e9126bb2261f955e.tar.bz2 BBsentials-ac682a3b1d956ae209dfe4d4e9126bb2261f955e.zip |
bug fixes, renamings, variable additions,...
Diffstat (limited to 'src/main/java/de/hype/bbsentials/packets')
-rw-r--r-- | src/main/java/de/hype/bbsentials/packets/packets/SplashNotifyPacket.java | 5 |
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; |