v0.9.3b: quickslotted bags are no longer removed from rankings
This commit is contained in:
parent
e919b880a9
commit
c89181ea18
|
@ -128,9 +128,10 @@ public enum Rankings {
|
|||
for (Item bagItem : ((Bag) item).items.toArray( new Item[0])){
|
||||
if (Dungeon.quickslot.contains(bagItem)) belongings.backpack.items.add(bagItem);
|
||||
}
|
||||
}
|
||||
if (!Dungeon.quickslot.contains(item)) {
|
||||
belongings.backpack.items.remove(item);
|
||||
} else if (!Dungeon.quickslot.contains(item))
|
||||
belongings.backpack.items.remove(item);
|
||||
}
|
||||
}
|
||||
|
||||
//remove all buffs (ones tied to equipment will be re-applied)
|
||||
|
|
Loading…
Reference in New Issue
Block a user