aboutsummaryrefslogtreecommitdiff
path: root/runtime/src/main/java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2024-12-07 12:59:39 +0800
committershedaniel <daniel@shedaniel.me>2024-12-07 12:59:39 +0800
commitc9206ba62fca8582fd40a8558e1a6d46c27b4218 (patch)
tree7992267036ceaa3d4ea6fca3225d32ded10c3778 /runtime/src/main/java
parent18baa61d7ed0a06c0b5ff94d86875ca9f88c2b0a (diff)
downloadRoughlyEnoughItems-c9206ba62fca8582fd40a8558e1a6d46c27b4218.tar.gz
RoughlyEnoughItems-c9206ba62fca8582fd40a8558e1a6d46c27b4218.tar.bz2
RoughlyEnoughItems-c9206ba62fca8582fd40a8558e1a6d46c27b4218.zip
Fix #1761
Diffstat (limited to 'runtime/src/main/java')
-rw-r--r--runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java b/runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java
index 8e6e00227..c8905db02 100644
--- a/runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java
+++ b/runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java
@@ -277,7 +277,7 @@ public class RoughlyEnoughItemsCoreClient {
}
private void loadTestPlugins() {
- if (System.getProperty("rei.test", "false").equals("true") || true) {
+ if (System.getProperty("rei.test", "false").equals("true")) {
PluginView.getClientInstance().registerPlugin(new REITestPlugin());
PluginView.getInstance().registerPlugin(new REITestCommonPlugin());
}