forked from TAIGA/TAIGA
fixed endless loop in teleport trait, closes #38
This commit is contained in:
@@ -67,6 +67,11 @@ public class TraitCurvature extends AbstractTrait {
|
|||||||
y++;
|
y++;
|
||||||
}
|
}
|
||||||
while (w.getBlockState(new BlockPos(x, y - 1, z)).getBlock() == Blocks.AIR) {
|
while (w.getBlockState(new BlockPos(x, y - 1, z)).getBlock() == Blocks.AIR) {
|
||||||
|
if (y <= 0) {
|
||||||
|
y = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
y--;
|
y--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user