From 24c244055ac30107e37ea200d90b551e4cfbfd09 Mon Sep 17 00:00:00 2001 From: Evan Debenham <Evan.SHPX@gmail.com> Date: Thu, 8 Jan 2015 21:27:27 -0500 Subject: [PATCH] v0.2.3c: adjusted exception handling for badge load (same case as before, no meaningful info can be gained at this point, better to not let bad saves ruin installs --- src/com/shatteredpixel/shatteredpixeldungeon/Badges.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/Badges.java b/src/com/shatteredpixel/shatteredpixeldungeon/Badges.java index 3b77b184b..379312430 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/Badges.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/Badges.java @@ -218,7 +218,7 @@ public class Badges { global = restore( bundle ); - } catch (IOException e) { + } catch (Exception e) { global = new HashSet<Badge>(); } }