Bug Mafia autosells bar skins

ckb

Minion
Staff member
It seems that Mafia autosells bar skins via 'Tree's Last Stand' choice 504 in ChoiceManager.java:

Code:
        // If we have Bar Skins, sell them all
        if (InventoryManager.getCount(ItemPool.BAR_SKIN) > 1) {
          return "2";
        } else if (InventoryManager.getCount(ItemPool.BAR_SKIN) > 0) {
          return "1";
        }

But bar skins are now more useful to have to create stuff like a barskin loincloth.
Is there a way to turn this off?
Should we remove it?
 
Back
Top