mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
fix NG+
This commit is contained in:
@@ -1212,11 +1212,7 @@ public class AdventurePlayer implements Serializable, SaveFileContent {
|
||||
}
|
||||
|
||||
public void removeAllQuestItems(){
|
||||
for (ItemData data : inventoryItems) {
|
||||
if(data != null && data.questItem){
|
||||
removeItem(data);
|
||||
}
|
||||
}
|
||||
inventoryItems.removeIf(data -> data != null && data.questItem);
|
||||
}
|
||||
|
||||
public boolean addBooster(Deck booster) {
|
||||
|
||||
Reference in New Issue
Block a user