diff options
author | hackthetime <l4bg0jb7@duck.com> | 2023-12-15 13:16:54 +0100 |
---|---|---|
committer | hackthetime <l4bg0jb7@duck.com> | 2023-12-15 13:16:54 +0100 |
commit | f78c95168e0c055dadfbdc91db5e254f89c94650 (patch) | |
tree | 0342902252eb7ce02ddf10d494d1e3a05f433ebb /fabric/src | |
parent | d7bd502812504373a3d4e181fa4635145d1c10be (diff) | |
download | BBsentials-f78c95168e0c055dadfbdc91db5e254f89c94650.tar.gz BBsentials-f78c95168e0c055dadfbdc91db5e254f89c94650.tar.bz2 BBsentials-f78c95168e0c055dadfbdc91db5e254f89c94650.zip |
small change otg with missing push from desktop
Diffstat (limited to 'fabric/src')
-rw-r--r-- | fabric/src/main/java/de/hype/bbsentials/fabric/Commands.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fabric/src/main/java/de/hype/bbsentials/fabric/Commands.java b/fabric/src/main/java/de/hype/bbsentials/fabric/Commands.java index f3a6d80..59de7c5 100644 --- a/fabric/src/main/java/de/hype/bbsentials/fabric/Commands.java +++ b/fabric/src/main/java/de/hype/bbsentials/fabric/Commands.java @@ -83,7 +83,7 @@ public class Commands implements MCCommand { int z = IntegerArgumentType.getInteger(context, "Z"); String contactWay = StringArgumentType.getString(context, "ContactWay"); - sendPacket(new ChChestPacket("", ChChestItems.getItem(item.split(";")), x + " " + y + " " + z, contactWay, "")); + sendPacket(new ChChestPacket(0, "", ChChestItems.getItem(item.split(";")), x + " " + y + " " + z, contactWay, "")); return 1; } ) |