diff options
| author | Daniel She <shekwancheung0528@gmail.com> | 2019-01-22 17:46:08 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-22 17:46:08 +0800 |
| commit | d62aa8ca0dd7e2759f231cc8970e285b36a685fd (patch) | |
| tree | 5ef4dd1d4274c9c9beb54c51eccf28b2accb7bfa /src/main/resources | |
| parent | f2f6213150d41bcf51b0c1032bd639f28389d294 (diff) | |
| parent | 680a75bb732475d55d8b8f03802b95cb7521b1a1 (diff) | |
| download | RoughlyEnoughItems-d62aa8ca0dd7e2759f231cc8970e285b36a685fd.tar.gz RoughlyEnoughItems-d62aa8ca0dd7e2759f231cc8970e285b36a685fd.tar.bz2 RoughlyEnoughItems-d62aa8ca0dd7e2759f231cc8970e285b36a685fd.zip | |
Merge pull request #11 from TehNut/plugin-loader-migration
Migrate to pluginloader
Diffstat (limited to 'src/main/resources')
| -rwxr-xr-x | src/main/resources/fabric.mod.json | 3 | ||||
| -rw-r--r-- | src/main/resources/pluginloader.json | 7 | ||||
| -rw-r--r-- | src/main/resources/plugins/rei.plugin.json | 8 | ||||
| -rw-r--r-- | src/main/resources/plugins/roughlyenoughitems.plugin.json | 6 |
4 files changed, 16 insertions, 8 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 4aa90427e..ca390ff56 100755 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -14,6 +14,9 @@ "requires": { "fabric": "0.1.4.76" }, + "recommended": { + "pluginloader": "1.0.6" + }, "mixins": { "client": "roughlyenoughitems.client.json" } diff --git a/src/main/resources/pluginloader.json b/src/main/resources/pluginloader.json new file mode 100644 index 000000000..8c256add0 --- /dev/null +++ b/src/main/resources/pluginloader.json @@ -0,0 +1,7 @@ +{ + "id": "roughlyenoughitems", + "initializer": "me.shedaniel.rei.RoughlyEnoughItemsPlugins", + "data": { + "side": "CLIENT" + } +}
\ No newline at end of file diff --git a/src/main/resources/plugins/rei.plugin.json b/src/main/resources/plugins/rei.plugin.json deleted file mode 100644 index ab578d972..000000000 --- a/src/main/resources/plugins/rei.plugin.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "plugins": [ - { - "identifier": "roughlyenoughitems:default_plugin", - "class": "me.shedaniel.rei.plugin.DefaultPlugin" - } - ] -}
\ No newline at end of file diff --git a/src/main/resources/plugins/roughlyenoughitems.plugin.json b/src/main/resources/plugins/roughlyenoughitems.plugin.json new file mode 100644 index 000000000..8ea3542ee --- /dev/null +++ b/src/main/resources/plugins/roughlyenoughitems.plugin.json @@ -0,0 +1,6 @@ +[ + { + "id": "default_plugin", + "initializer": "me.shedaniel.rei.plugin.DefaultPlugin" + } +]
\ No newline at end of file |
