diff --git a/CentrED/Map/MapManager.cs b/CentrED/Map/MapManager.cs index 4bed29c..4058795 100644 --- a/CentrED/Map/MapManager.cs +++ b/CentrED/Map/MapManager.cs @@ -910,7 +910,7 @@ public Vector3 Unproject(int x, int y, int z) private bool CanDrawLand(LandObject lo) { - if(lo.Tile.Id <= 2 && !ShowNoDraw) + if(!ShowLand || (lo.Tile.Id <= 2 && !ShowNoDraw)) return false; return WithinZRange(lo.Tile.Z); }