From ce6c2eb553b97185cc93e6495d124880e9694840 Mon Sep 17 00:00:00 2001 From: iProgramInCpp Date: Fri, 11 Aug 2023 11:47:54 +0300 Subject: [PATCH] * Disable picking for fire. --- source/world/tile/FireTile.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/world/tile/FireTile.cpp b/source/world/tile/FireTile.cpp index 32809c0..657192d 100644 --- a/source/world/tile/FireTile.cpp +++ b/source/world/tile/FireTile.cpp @@ -144,9 +144,7 @@ bool FireTile::isValidFireLocation(Level* level, int x, int y, int z) bool FireTile::mayPick() { - //return false; - - return true; // @TODO: For testing + return false; } bool FireTile::mayPlace(Level* level, int x, int y, int z)