diff options
| author | shedaniel <daniel@shedaniel.me> | 2024-12-07 12:59:39 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2024-12-07 12:59:39 +0800 |
| commit | c9206ba62fca8582fd40a8558e1a6d46c27b4218 (patch) | |
| tree | 7992267036ceaa3d4ea6fca3225d32ded10c3778 /runtime/src/main | |
| parent | 18baa61d7ed0a06c0b5ff94d86875ca9f88c2b0a (diff) | |
| download | RoughlyEnoughItems-c9206ba62fca8582fd40a8558e1a6d46c27b4218.tar.gz RoughlyEnoughItems-c9206ba62fca8582fd40a8558e1a6d46c27b4218.tar.bz2 RoughlyEnoughItems-c9206ba62fca8582fd40a8558e1a6d46c27b4218.zip | |
Fix #1761
Diffstat (limited to 'runtime/src/main')
| -rw-r--r-- | runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java | 2 |
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()); } |
