mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-25 04:15:34 +08: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