Skip to content

Commit

Permalink
fixed regression in fluid interaction caused by suffocation fix (fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benblank committed Mar 6, 2016
1 parent ee4cf1b commit 588f4be
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/five35/minecraft/ice/DeathMarkerBlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,21 @@ public int getRenderType() {
return -1;
}

@Override
public boolean isFullCube() {
return false;
}

@Override
public boolean isOpaqueCube() {
return false;
}

@Override
public boolean isPassable(IBlockAccess world, BlockPos position) {
return true;
}

@Override
public boolean onBlockActivated(final World world, final BlockPos position, final IBlockState state, final EntityPlayer player, final EnumFacing side, final float xOffset, final float yOffset, final float zOffset) {
if (world.isRemote) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ public boolean blocksLight() {
return false;
}

@Override
public boolean blocksMovement() {
return false;
}

@Override
public boolean isSolid() {
return false;
Expand Down

0 comments on commit 588f4be

Please sign in to comment.