Skip to content

Commit

Permalink
Fix collision glitch with half drawers
Browse files Browse the repository at this point in the history
  • Loading branch information
jaquadro committed Jun 20, 2015
1 parent 3714a4c commit a375bf9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
minecraft_version=1.8
forge_version=1.8-11.14.3.1449
mod_version=2.1.2
mod_version=2.1.3
chameleon_version=0.1.0
chameleon_max_version=1.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,11 @@ public int getLightOpacity (IBlockAccess world, BlockPos pos) {
return 255;
}

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

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

0 comments on commit a375bf9

Please sign in to comment.