v0.3.1d: stackable dropped items can no longer be added to a for sale pile.

This commit is contained in:
Evan Debenham
2015-09-10 20:23:59 -04:00
parent e27110416c
commit b8c3ca0f9a
@@ -172,7 +172,7 @@ public class Heap implements Bundlable {
public void drop( Item item ) {
if (item.stackable) {
if (item.stackable && type != Type.FOR_SALE) {
for (Item i : items) {
if (i.isSimilar( item )) {