From bf526920c4ab4bb6719e27c305a35e1772b2873b Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 18 Jan 2019 21:22:16 +0800 Subject: Can't compile yet --- .../resources/assets/roughlyenoughitems/icon.png | Bin 44764 -> 0 bytes src/main/resources/fabric.mod.json | 20 -------------------- src/main/resources/pack.png | Bin 0 -> 44764 bytes src/main/resources/riftmod.json | 13 +++++++++++++ src/main/resources/roughlyenoughitems.client.json | 14 +++++++------- 5 files changed, 20 insertions(+), 27 deletions(-) delete mode 100644 src/main/resources/assets/roughlyenoughitems/icon.png delete mode 100755 src/main/resources/fabric.mod.json create mode 100644 src/main/resources/pack.png create mode 100644 src/main/resources/riftmod.json (limited to 'src/main/resources') diff --git a/src/main/resources/assets/roughlyenoughitems/icon.png b/src/main/resources/assets/roughlyenoughitems/icon.png deleted file mode 100644 index bd34c710a..000000000 Binary files a/src/main/resources/assets/roughlyenoughitems/icon.png and /dev/null differ diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json deleted file mode 100755 index 4d2106474..000000000 --- a/src/main/resources/fabric.mod.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "id": "roughlyenoughitems", - "name": "RoughlyEnoughItems", - "description": "To allow players to view items and recipes.", - "version": "2.0.0.39", - "side": "client", - "authors": [ - "Danielshe" - ], - "initializers": [ - "me.shedaniel.rei.RoughlyEnoughItemsCore", - "me.shedaniel.rei.client.ClientHelper" - ], - "requires": { - "fabric": "0.1.4.71" - }, - "mixins": { - "client": "roughlyenoughitems.client.json" - } -} diff --git a/src/main/resources/pack.png b/src/main/resources/pack.png new file mode 100644 index 000000000..bd34c710a Binary files /dev/null and b/src/main/resources/pack.png differ diff --git a/src/main/resources/riftmod.json b/src/main/resources/riftmod.json new file mode 100644 index 000000000..09332479a --- /dev/null +++ b/src/main/resources/riftmod.json @@ -0,0 +1,13 @@ +{ + "id": "roughlyenoughitems", + "name": "RoughlyEnoughItems", + "version": "2.0.0.9", + "authors": [ + "Danielshe" + ], + "listeners": [ + "me.shedaniel.rei.RoughlyEnoughItemsInit" + ], + "url": "https://shedaniel.me", + "description": "To allow players to view items and recipes." +} \ No newline at end of file diff --git a/src/main/resources/roughlyenoughitems.client.json b/src/main/resources/roughlyenoughitems.client.json index a8248d368..ec138e7c3 100755 --- a/src/main/resources/roughlyenoughitems.client.json +++ b/src/main/resources/roughlyenoughitems.client.json @@ -3,13 +3,13 @@ "package": "me.shedaniel.rei.mixin", "compatibilityLevel": "JAVA_8", "mixins": [ - "MixinContainerGui", - "MixinClientPlayNetworkHandler", - "MixinPlayerInventoryGui", - "MixinCraftingTableGui", - "MixinCreativePlayerInventoryGui", - "MixinBrewingRecipeRegistry", - "MixinRecipeBookGui" + "MixinGuiContainer", + "MixinNetHandlerPlayClient", + "MixinGuiInventory", + "MixinGuiCrafting", + "MixinGuiContainerCreative", + "MixinPotionBrewing", + "MixinGuiRecipeBook" ], "injectors": { "defaultRequire": 1 -- cgit