diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-25 14:00:41 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-25 14:03:49 +1000 |
commit | f7d5ff8debbbc1d80e8cd892d1184cb5aeb5bca4 (patch) | |
tree | f71f37900ebf5c8ccf02488871b9e37af18dec66 /source/game/StarItem.cpp | |
parent | 25b021c0cb8f2748d7676a744e82d796d90dfb8e (diff) |
Fix ArmorWearer setters
silly me
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; } } |