v0.2.3f: fixed yet more quickslot issues, this should be all of them.

This commit is contained in:
Evan Debenham
2015-01-26 02:11:39 -05:00
parent d0e6aa6c1f
commit 944d2d33a2
2 changed files with 5 additions and 3 deletions
@@ -179,7 +179,7 @@ public class Item implements Bundlable {
}
items.add( this );
Dungeon.quickslot.replaceSimilar(this);
if (stackable || this instanceof Boomerang) Dungeon.quickslot.replaceSimilar(this);
updateQuickslot();
Collections.sort( items, itemComparator );
return true;
@@ -205,7 +205,7 @@ public class Item implements Bundlable {
} else
if (quantity == 1) {
if (stackable == true || this instanceof Boomerang){
if (stackable || this instanceof Boomerang){
Dungeon.quickslot.convertToPlaceholder(this);
}