v0.2.3e: fixes, actual final commit

This commit is contained in:
Evan Debenham
2015-01-21 23:55:37 -05:00
parent 8fa6b41427
commit 520131fb2d
2 changed files with 8 additions and 2 deletions
@@ -26,6 +26,7 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.SnipersMark;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.Bag;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Boomerang;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.MissileWeapon;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.scenes.CellSelector;
@@ -204,7 +205,7 @@ public class Item implements Bundlable {
} else
if (quantity == 1) {
if (stackable == true){
if (stackable == true || this instanceof Boomerang){
Dungeon.quickslot.convertToPlaceholder(this);
}