From ac682a3b1d956ae209dfe4d4e9126bb2261f955e Mon Sep 17 00:00:00 2001 From: hackthetime Date: Fri, 22 Sep 2023 11:17:33 +0200 Subject: bug fixes, renamings, variable additions,... --- .../java/de/hype/bbsentials/packets/packets/SplashNotifyPacket.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/main/java/de/hype/bbsentials/packets') 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; -- cgit