Wow mojang is stupid

Or at least the mapping author is. How could I not get that `getBlocksMovement` should return if the block DOESN'T block movement, that's so obvious, why would I ever think otherwise
This commit is contained in:
abel1502 2025-06-27 18:07:58 +03:00
parent 466f12e6e2
commit dec8c9c43a
No known key found for this signature in database
GPG Key ID: 076926596A536338

View File

@ -82,8 +82,9 @@ public class Spotlight extends Block implements ISpotlight, INBTTransformable {
}
@Override
// Ah yes, I love methods named the literal opposite of what they do
public boolean getBlocksMovement(IBlockAccess world, int x, int y, int z) {
return false;
return true;
}
@Override