aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2019-11-15 12:30:37 +0800
committershedaniel <daniel@shedaniel.me>2019-11-15 12:30:37 +0800
commit179f294a3829bb5743ac25ebe89bc6140a7668ac (patch)
tree08ca5a3367e83ce13d52d3937aeea17f24011837
parent3bcd325f2d9454753990c2ea2b06b7947c118d3d (diff)
downloadRoughlyEnoughItems-179f294a3829bb5743ac25ebe89bc6140a7668ac.tar.gz
RoughlyEnoughItems-179f294a3829bb5743ac25ebe89bc6140a7668ac.tar.bz2
RoughlyEnoughItems-179f294a3829bb5743ac25ebe89bc6140a7668ac.zip
3.2.7
-rw-r--r--gradle.properties2
-rw-r--r--src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java6
2 files changed, 4 insertions, 4 deletions
diff --git a/gradle.properties b/gradle.properties
index af0090039..6020d21f1 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
-mod_version=3.2.6-unstable
+mod_version=3.2.7-unstable
minecraft_version=19w45a
yarn_version=19w45a+build.2
fabricloader_version=0.6.3+build.168
diff --git a/src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java b/src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java
index fd013ae51..4d59851d8 100644
--- a/src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java
+++ b/src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java
@@ -259,7 +259,7 @@ public class RecipeHelperImpl implements RecipeHelper {
}
if (plugin instanceof REIPluginV0)
((REIPluginV0) plugin).preRegister();
- } catch (Exception e) {
+ } catch (Throwable e) {
RoughlyEnoughItemsCore.LOGGER.error("[REI] " + plugin.getPluginIdentifier().toString() + " plugin failed to pre register!", e);
}
}
@@ -278,7 +278,7 @@ public class RecipeHelperImpl implements RecipeHelper {
} else {
throw new IllegalStateException("Invaild Plugin Class!");
}
- } catch (Exception e) {
+ } catch (Throwable e) {
RoughlyEnoughItemsCore.LOGGER.error("[REI] " + identifier.toString() + " plugin failed to load!", e);
}
}
@@ -289,7 +289,7 @@ public class RecipeHelperImpl implements RecipeHelper {
return;
if (plugin instanceof REIPluginV0)
((REIPluginV0) plugin).postRegister();
- } catch (Exception e) {
+ } catch (Throwable e) {
RoughlyEnoughItemsCore.LOGGER.error("[REI] " + plugin.getPluginIdentifier().toString() + " plugin failed to post register!", e);
}
}