aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/RedlightTile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/RedlightTile.cpp')
-rw-r--r--Minecraft.World/RedlightTile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Minecraft.World/RedlightTile.cpp b/Minecraft.World/RedlightTile.cpp
index 2a529c84..bf4cc01f 100644
--- a/Minecraft.World/RedlightTile.cpp
+++ b/Minecraft.World/RedlightTile.cpp
@@ -36,7 +36,7 @@ void RedlightTile::onPlace(Level *level, int x, int y, int z)
}
else if (!isLit && level->hasNeighborSignal(x, y, z))
{
- level->setTile(x, y, z, Tile::redstoneLight_lit_Id);
+ level->setTileAndData(x, y, z, Tile::redstoneLight_lit_Id, 0, UPDATE_CLIENTS);
}
}
}
@@ -51,7 +51,7 @@ void RedlightTile::neighborChanged(Level *level, int x, int y, int z, int type)
}
else if (!isLit && level->hasNeighborSignal(x, y, z))
{
- level->setTile(x, y, z, Tile::redstoneLight_lit_Id);
+ level->setTileAndData(x, y, z, Tile::redstoneLight_lit_Id, 0, UPDATE_CLIENTS);
}
}
}
@@ -62,7 +62,7 @@ void RedlightTile::tick(Level *level, int x, int y, int z, Random *random)
{
if (isLit && !level->hasNeighborSignal(x, y, z))
{
- level->setTile(x, y, z, Tile::redstoneLight_Id);
+ level->setTileAndData(x, y, z, Tile::redstoneLight_Id, 0, UPDATE_CLIENTS);
}
}
}