diff --git a/src/com/massivecraft/mcore/store/Coll.java b/src/com/massivecraft/mcore/store/Coll.java index b91ed21d..ba18cb29 100644 --- a/src/com/massivecraft/mcore/store/Coll.java +++ b/src/com/massivecraft/mcore/store/Coll.java @@ -518,9 +518,9 @@ public class Coll implements CollInterface { entry = this.getDriver().load(this, id); } - catch (JsonSyntaxException e) + catch (Exception e) { - MCore.get().log(Txt.parse("Database could not load entity. Invalid JSON syntax. You edited a file manually and did it wrong?")); + MCore.get().log(Txt.parse("Database could not load entity. You edited a file manually and made wrong JSON?")); MCore.get().log(Txt.parse("Error: %s", e.getMessage())); MCore.get().log(Txt.parse("Entity: %s", id)); MCore.get().log(Txt.parse("Collection: %s", this.getName()));