aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources')
-rwxr-xr-xsrc/main/resources/assets/roughlyenoughitems/lang/en_us.json3
-rwxr-xr-xsrc/main/resources/fabric.mod.json14
-rwxr-xr-xsrc/main/resources/roughlyenoughitems.mixins.json8
3 files changed, 15 insertions, 10 deletions
diff --git a/src/main/resources/assets/roughlyenoughitems/lang/en_us.json b/src/main/resources/assets/roughlyenoughitems/lang/en_us.json
index b56980800..8ca9f3bac 100755
--- a/src/main/resources/assets/roughlyenoughitems/lang/en_us.json
+++ b/src/main/resources/assets/roughlyenoughitems/lang/en_us.json
@@ -84,7 +84,8 @@
"text.rei.config.item_cheating_mode.rei_like": "Normal",
"text.rei.config.item_cheating_mode.jei_like": "Reversed",
"text.rei.config.light_gray_recipe_border": "Light Gray Recipe Border:",
- "text.rei.no_config_api": "Cloth Config API does not exist!\nPlease install it in order to show an in-game config screen!",
+ "text.rei.config_api_failed": "You arrived here either if Cloth Config API failed or you don't have it installed!\nUpdate / Install the API and report to the bug tracker.",
+ "text.rei.back": "Back",
"_comment": "Don't change / translate the credit down below if you are doing it :)",
"text.rei.credit.text": "§lRoughly Enough Items\n§7Originally a fork for Almost Enough Items.\n\n§lDevelopers\n - Originally by ZenDarva\n - Created by Danielshe\n - Plugin Support by TehNut\n\n§lLanguage Translation\n English - Danielshe\n Simplified Chinese - Danielshe\n Traditional Chinese - hugoalh, gxy17886 & Danielshe\n French - Yanis48\n German - MelanX\n Estonian - Madis0\n Portuguese - thiagokenis\n LOLCAT - Danielshe\n Upside Down - Danielshe\n Brazilian Portuguese - thiagokenis\n Bulgarian - geniiii\n\n§lLicense\n§7Roughly Enough Items is using MIT."
}
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index 71f8021a9..2513c7fdf 100755
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -23,6 +23,12 @@
],
"main": [
"me.shedaniel.rei.RoughlyEnoughItemsNetwork"
+ ],
+ "modmenu": [
+ "me.shedaniel.rei.REIModMenuEntryPoint"
+ ],
+ "rei_plugins": [
+ "me.shedaniel.rei.plugin.DefaultPlugin"
]
},
"requires": {
@@ -37,12 +43,6 @@
"roughlyenoughitems.mixins.json"
],
"custom": {
- "modmenu:clientsideOnly": true,
- "roughlyenoughitems:plugins": [
- {
- "id": "default_plugin",
- "class": "me.shedaniel.rei.plugin.DefaultPlugin"
- }
- ]
+ "modmenu:clientsideOnly": true
}
}
diff --git a/src/main/resources/roughlyenoughitems.mixins.json b/src/main/resources/roughlyenoughitems.mixins.json
index 0fcdc8327..f43977162 100755
--- a/src/main/resources/roughlyenoughitems.mixins.json
+++ b/src/main/resources/roughlyenoughitems.mixins.json
@@ -3,12 +3,16 @@
"package": "me.shedaniel.rei.mixin",
"minVersion": "0.7.11",
"compatibilityLevel": "JAVA_8",
- "mixins": [],
+ "mixins": [
+ "MixinPlayerManager"
+ ],
"client": [
"MixinContainerScreen",
"MixinBrewingRecipeRegistry",
"MixinRecipeBookGui",
- "MixinCreativePlayerInventoryScreen"
+ "MixinCreativePlayerInventoryScreen",
+ "MixinClientPlayNetworkHandler",
+ "MixinClientConnection"
],
"injectors": {
"defaultRequire": 1