diff options
author | HacktheTime <l4bg0jb7@duck.com> | 2023-12-15 18:16:08 +0100 |
---|---|---|
committer | HacktheTime <l4bg0jb7@duck.com> | 2023-12-15 18:16:08 +0100 |
commit | 8ffaa253eae1b82c12c1e065fc9cc66006c9feab (patch) | |
tree | acf9025fe22b2d144d3c1ec531480a09755160db /common/src/main | |
parent | bf86da0fd755ca29b48de2fece6d57d50f9eb14f (diff) | |
parent | 93882c70896482024a7f4b90eee8e46641bd457c (diff) | |
download | BBsentials-8ffaa253eae1b82c12c1e065fc9cc66006c9feab.tar.gz BBsentials-8ffaa253eae1b82c12c1e065fc9cc66006c9feab.tar.bz2 BBsentials-8ffaa253eae1b82c12c1e065fc9cc66006c9feab.zip |
Merge remote-tracking branch 'origin/hypeswap' into hypeswap
Diffstat (limited to 'common/src/main')
-rw-r--r-- | common/src/main/java/de/hype/bbsentials/common/packets/packets/ChChestPacket.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/common/src/main/java/de/hype/bbsentials/common/packets/packets/ChChestPacket.java b/common/src/main/java/de/hype/bbsentials/common/packets/packets/ChChestPacket.java index 6aab4ce..fbba212 100644 --- a/common/src/main/java/de/hype/bbsentials/common/packets/packets/ChChestPacket.java +++ b/common/src/main/java/de/hype/bbsentials/common/packets/packets/ChChestPacket.java @@ -5,14 +5,16 @@ import de.hype.bbsentials.common.constants.enviromentShared.ChChestItem; public class ChChestPacket extends AbstractPacket { /** + * @param lobbyId the id of the lobby * @param announcerUsername person who found the chest. * @param items items contained in the chest. {@link de.hype.bbsentials.common.constants.enviromentShared.ChChestItems (available constants)} * @param locationCoords coordinates of the chest. * @param bbcommand command that shall be executed in game to get an invitation to the party. * @param extraMessage a message that is optional to be provided by the announcer for custom additional info */ - public ChChestPacket(String announcerUsername, ChChestItem[] items, String locationCoords, String bbcommand, String extraMessage) { + public ChChestPacket(int lobbyId, String announcerUsername, ChChestItem[] items, String locationCoords, String bbcommand, String extraMessage) { super(1, 1); //Min and Max supported Version + this.lobbyId = lobbyId; this.announcerUsername = announcerUsername; this.locationCoords = locationCoords; this.bbcommand = bbcommand; @@ -20,10 +22,10 @@ public class ChChestPacket extends AbstractPacket { this.items = items; } + public final int lobbyId; public final String announcerUsername; public final String locationCoords; public final String bbcommand; public final String extraMessage; public final ChChestItem[] items; - } |