mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
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:
parent
466f12e6e2
commit
dec8c9c43a
@ -82,8 +82,9 @@ public class Spotlight extends Block implements ISpotlight, INBTTransformable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@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) {
|
public boolean getBlocksMovement(IBlockAccess world, int x, int y, int z) {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user