aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ThinFenceTile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/ThinFenceTile.cpp')
-rw-r--r--Minecraft.World/ThinFenceTile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/ThinFenceTile.cpp b/Minecraft.World/ThinFenceTile.cpp
index bd1f1687..3f471ce4 100644
--- a/Minecraft.World/ThinFenceTile.cpp
+++ b/Minecraft.World/ThinFenceTile.cpp
@@ -32,7 +32,7 @@ bool ThinFenceTile::isCubeShaped()
int ThinFenceTile::getRenderShape()
{
- return Tile::SHAPE_IRON_FENCE;
+ return material == Material::glass ? Tile::SHAPE_THIN_PANE : Tile::SHAPE_IRON_FENCE;
}
bool ThinFenceTile::shouldRenderFace(LevelSource *level, int x, int y, int z, int face)
@@ -134,7 +134,7 @@ Icon *ThinFenceTile::getEdgeTexture()
bool ThinFenceTile::attachsTo(int tile)
{
- return Tile::solid[tile] || tile == id || tile == Tile::glass_Id;
+ return Tile::solid[tile] || tile == id || tile == Tile::glass_Id || tile == Tile::stained_glass_Id || tile == Tile::stained_glass_pane_Id;
}
bool ThinFenceTile::isSilkTouchable()