mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-22 20:03:21 +00:00
do not save virtual item
This commit is contained in:
parent
ed98ab152d
commit
7bacd8ab70
@ -218,7 +218,8 @@ public class Inventory implements Iterable<GameItem> {
|
||||
}
|
||||
|
||||
// Set ownership and save to db
|
||||
item.save();
|
||||
if (item.getItemData().getItemType() != ItemType.ITEM_VIRTUAL)
|
||||
item.save();
|
||||
|
||||
return item;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user