aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/NotGateTile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/NotGateTile.cpp')
-rw-r--r--Minecraft.World/NotGateTile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Minecraft.World/NotGateTile.cpp b/Minecraft.World/NotGateTile.cpp
index a3971284..d9fc35a7 100644
--- a/Minecraft.World/NotGateTile.cpp
+++ b/Minecraft.World/NotGateTile.cpp
@@ -121,7 +121,7 @@ void NotGateTile::tick(Level *level, int x, int y, int z, Random *random)
}
}
- if (on)
+ if (on)
{
if (neighborSignal)
{
@@ -152,7 +152,7 @@ void NotGateTile::tick(Level *level, int x, int y, int z, Random *random)
level->setTileAndData(x, y, z, Tile::notGate_on_Id, level->getData(x, y, z));
}
else
- {
+ {
app.DebugPrintf("Torch at (%d,%d,%d) has toggled too many times\n",x,y,z);
}
}
@@ -221,7 +221,7 @@ int NotGateTile::cloneTileId(Level *level, int x, int y, int z)
return Tile::notGate_on_Id;
}
-void NotGateTile::levelTimeChanged(Level *level, __int64 delta, __int64 newTime)
+void NotGateTile::levelTimeChanged(Level *level, int64_t delta, int64_t newTime)
{
deque<Toggle> *toggles = recentToggles[level];