diff options
Diffstat (limited to 'Minecraft.World/WallTile.cpp')
| -rw-r--r-- | Minecraft.World/WallTile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/WallTile.cpp b/Minecraft.World/WallTile.cpp index b7d3f038..a95360ce 100644 --- a/Minecraft.World/WallTile.cpp +++ b/Minecraft.World/WallTile.cpp @@ -159,7 +159,7 @@ bool WallTile::connectsTo(LevelSource *level, int x, int y, int z) return true; } Tile *tileInstance = Tile::tiles[tile]; - if (tileInstance != nullptr) + if (tileInstance != NULL) { if (tileInstance->material->isSolidBlocking() && tileInstance->isCubeShaped()) { |
