3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

Fixed BLOCK_CANBUILD never throwing

Dieser Commit ist enthalten in:
Dinnerbone 2011-03-07 15:49:26 +00:00
Ursprung 03a5bbc612
Commit 03fae0a2f7

Datei anzeigen

@ -1625,7 +1625,7 @@ public class World implements IBlockAccess {
// CraftBukkit start - We dont want to allow the user to override the bounding box check
boolean defaultReturn = axisalignedbb != null && !this.a(axisalignedbb) ? false : (block != Block.WATER && block != Block.STATIONARY_WATER && block != Block.LAVA && block != Block.STATIONARY_LAVA && block != Block.FIRE && block != Block.SNOW ? i > 0 && block == null && block1.a(this, j, k, l) : true);
if (!defaultReturn) {
if (axisalignedbb != null && !this.a(axisalignedbb)) {
return false;
}