From d8d6d0dc959c5f23f1892314ee0cf793395ce802 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Thu, 1 Dec 2011 00:07:21 +0200 Subject: Do not assert if count becomes larger than getStackMax() in InventoryItem::add(); it is nicer for scripting and overall hacking this way, because rising it higher than the limit is does not break anything. It should be, and is, enforced elsewhere where appropriate. --- src/inventory.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/inventory.h') diff --git a/src/inventory.h b/src/inventory.h index cee81a21e..a303fa0de 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -95,7 +95,6 @@ public: void add(u16 count) { - assert(m_count + count <= getStackMax()); m_count += count; } void remove(u16 count) -- cgit v1.2.3