From 1f6ff401a8489974939b0fc8b628f7d9e8708893 Mon Sep 17 00:00:00 2001 From: codinablack Date: Fri, 6 Dec 2024 16:05:29 -0600 Subject: [PATCH] Remove overlooked print --- src/tile.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tile.cpp b/src/tile.cpp index 49c9782b..e2f556c8 100644 --- a/src/tile.cpp +++ b/src/tile.cpp @@ -526,7 +526,6 @@ ReturnValue Tile::queryAdd(const Creature& creature, uint32_t flags) const for (const Item* item : *items) { const ItemType& iiType = Item::items[item->getID()]; if (iiType.blockSolid && (!iiType.moveable || item->hasAttribute(ITEM_ATTRIBUTE_UNIQUEID))) { - std::cout << "BlockSolid without a ground return." << std::endl; return RETURNVALUE_NOTPOSSIBLE; } }