(World aWorld, int aX, int aY, int aZ, Random aRandom)
| 125 | public void onBlockAdded2(World aWorld, int aX, int aY, int aZ) {/**/} |
| 126 | |
| 127 | @Override |
| 128 | public final void updateTick(World aWorld, int aX, int aY, int aZ, Random aRandom) { |
| 129 | if (aWorld.isRemote || checkGravity(aWorld, aX, aY, aZ)) return; |
| 130 | updateTick2(aWorld, aX, aY, aZ, aRandom); |
| 131 | } |
| 132 | |
| 133 | public boolean checkGravity(World aWorld, int aX, int aY, int aZ) { |
| 134 | byte aMeta = WD.meta(aWorld, aX, aY, aZ); |
nothing calls this directly
no test coverage detected