3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-08 22:02:50 +02:00

Fix blockconnection

Dieser Commit ist enthalten in:
KennyTV 2019-04-25 22:05:32 +02:00
Ursprung fd1932cfd8
Commit 6ab525be7b

Datei anzeigen

@ -39,7 +39,7 @@ public class ConnectionData {
ConnectionHandler handler = connectionHandlerMap.get(blockState);
if (handler == null) continue;
int newBlockState = handler.connect(user, position, blockState);
int newBlockState = handler.connect(user, pos, blockState);
PacketWrapper blockUpdatePacket = new PacketWrapper(0x0B, null, user);
blockUpdatePacket.write(Type.POSITION, pos);
blockUpdatePacket.write(Type.VAR_INT, newBlockState);