3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-16 01:01:21 +02:00

Fix wrong casting

Dieser Commit ist enthalten in:
creeper123123321 2019-11-22 15:19:25 -03:00
Ursprung 062d3759be
Commit 9308fc7712

Datei anzeigen

@ -185,7 +185,7 @@ public class ConnectionData {
block = handler.connect(user, new Position(
(int) (xOff + x),
(short) (yOff + y),
(short) (zOff + z)
(int) (zOff + z)
), block);
section.setFlatBlock(x, y, z, block);
}