From 1df169f533c8affe110f29e40a1cfbcb2f041cff Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 1 Aug 2022 18:50:01 -0400 Subject: [PATCH] v1.4.0: fixed amulet scene not saving badges when it should --- .../com/shatteredpixel/shatteredpixeldungeon/items/Amulet.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Amulet.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Amulet.java index 826852ae0..a22a545a4 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Amulet.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Amulet.java @@ -107,6 +107,7 @@ public class Amulet extends Item { Badges.validateChampion(Challenges.activeChallenges()); try { Dungeon.saveAll(); + Badges.saveGlobal(); } catch (IOException e) { ShatteredPixelDungeon.reportException(e); }