diff options
author | makamys <makamys@outlook.com> | 2022-06-09 12:57:52 +0200 |
---|---|---|
committer | makamys <makamys@outlook.com> | 2022-06-09 12:57:52 +0200 |
commit | 5bea63de0d78487b91dd701a8f6931b9314f2be5 (patch) | |
tree | 9a23fc91c986d8763b31c48f670b812e9ce24c8a /src/main/resources | |
parent | 5820fe56fb4022ddda044a8fe502b59e18147836 (diff) | |
download | Neodymium-5bea63de0d78487b91dd701a8f6931b9314f2be5.tar.gz Neodymium-5bea63de0d78487b91dd701a8f6931b9314f2be5.tar.bz2 Neodymium-5bea63de0d78487b91dd701a8f6931b9314f2be5.zip |
Rebrand pt. 1: Rename mod to Neodymium
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/lodmod.mixin.json | 11 | ||||
-rw-r--r-- | src/main/resources/mcmod.info | 4 | ||||
-rw-r--r-- | src/main/resources/neodymium.mixin.json | 11 |
3 files changed, 13 insertions, 13 deletions
diff --git a/src/main/resources/lodmod.mixin.json b/src/main/resources/lodmod.mixin.json deleted file mode 100644 index da0ef0c..0000000 --- a/src/main/resources/lodmod.mixin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "required": true, - "minVersion": "0.6", - "package": "makamys.lodmod.mixin", - "refmap": "lodmod.mixin.refmap.json", - "compatibilityLevel": "JAVA_8", - "mixins": [ - - ], - "plugin": "makamys.lodmod.MixinConfigPlugin" -} diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 2a52d7c..18d1911 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -1,8 +1,8 @@ [ { "modid": "${modid}", - "name": "LOD mod", - "description": "Increases render distance by rendering distant chunks with a low level of detail", + "name": "Neodymium", + "description": "Improves the framerate by changing the chunk renderer to use modern OpenGL.", "version": "${version}", "mcversion": "${minecraft_version}", "url": "", diff --git a/src/main/resources/neodymium.mixin.json b/src/main/resources/neodymium.mixin.json new file mode 100644 index 0000000..18efa76 --- /dev/null +++ b/src/main/resources/neodymium.mixin.json @@ -0,0 +1,11 @@ +{ + "required": true, + "minVersion": "0.6", + "package": "makamys.neodymium.mixin", + "refmap": "neodymium.mixin.refmap.json", + "compatibilityLevel": "JAVA_8", + "mixins": [ + + ], + "plugin": "makamys.neodymium.MixinConfigPlugin" +} |