3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-11-08 01:00:15 +01: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( block = handler.connect(user, new Position(
(int) (xOff + x), (int) (xOff + x),
(short) (yOff + y), (short) (yOff + y),
(short) (zOff + z) (int) (zOff + z)
), block); ), block);
section.setFlatBlock(x, y, z, block); section.setFlatBlock(x, y, z, block);
} }