Skip to content

Commit

Permalink
1.0.19 - fixed rendering issue - lantern and raw mud brick is invisib…
Browse files Browse the repository at this point in the history
…le when placed at y=144 and chunk haven't solid blocks above 144
  • Loading branch information
Aleksey-Terzi committed Jul 16, 2015
1 parent 3753861 commit d90cd61
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.prop
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
minecraft_version=1.7.10
forge_version=10.13.2.1291
mod_version=1.0.18
mod_version=1.0.19
group_name=com.aleksey.decorations
archive_name=[1.7.10]Decorations
2 changes: 1 addition & 1 deletion src/com/aleksey/decorations/DecorationsMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.ExistingSubstitutionException;

@Mod(modid="DecorationsTFC", name="Decorations", version="1.0.18", dependencies="required-after:terrafirmacraft")
@Mod(modid="DecorationsTFC", name="Decorations", version="1.0.19", dependencies="required-after:terrafirmacraft")
public class DecorationsMod
{
@Instance("DecorationsTFC")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ else if(isWall(backBlock))

renderer.clearOverrideBlockTexture();

return false;
return true;
}

private static boolean isWallLow(int x, int y, int z, Block block, RenderBlocks renderer)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block b
setBound(_bound, renderer);
renderer.renderStandardBlock(block, x, y, z);

return false;
return true;
}

@Override
Expand Down

0 comments on commit d90cd61

Please sign in to comment.