v0.3.1: fixed revivals stopping some items in the inventory from working properly.
This commit is contained in:
parent
4220c22cbf
commit
3ac41624f9
|
@ -186,7 +186,8 @@ public class Belongings implements Iterable<Item> {
|
||||||
item.detachAll( backpack );
|
item.detachAll( backpack );
|
||||||
}
|
}
|
||||||
} else if (item.unique) {
|
} else if (item.unique) {
|
||||||
// Keep unique items
|
item.detachAll(backpack);
|
||||||
|
item.collect();
|
||||||
} else if (!item.isEquipped( owner )) {
|
} else if (!item.isEquipped( owner )) {
|
||||||
item.detachAll( backpack );
|
item.detachAll( backpack );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user