Skip to content

Commit

Permalink
oops, stupid mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
outofmem13 committed Aug 5, 2020
1 parent adb93c2 commit 3609ca2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void translate(ReleaseToBeta main, MapChunkPacketData packet, BetaClientS

List<BlockChangeRecord> blockChangeRecords = new ArrayList<>();

if (rawX >= 0 || rawZ >= 0) {
if (rawX >= 0 && rawZ >= 0) {
for (int x1 = 0; x1 < (newXSize < 0 ? 16 : newXSize); x1++) {
for (int y1 = 0; y1 < height; y1++) {
for (int z1 = 0; z1 < (newZSize < 0 ? 16 : newZSize); z1++) {
Expand Down

0 comments on commit 3609ca2

Please sign in to comment.