diff options
Diffstat (limited to 'source/game/StarItem.cpp')
-rw-r--r-- | source/game/StarItem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarItem.cpp b/source/game/StarItem.cpp index e25870b..4e4ec14 100644 --- a/source/game/StarItem.cpp +++ b/source/game/StarItem.cpp @@ -291,7 +291,7 @@ bool Item::itemsEqual(ItemConstPtr const& a, ItemConstPtr const& b) { if (a && b) // Both aren't null, compare return a->stackableWith(b); else // One is null, so not equal - return true; + return false; } } |