diff options
author | ILikePlayingGames <22475143+ILikePlayingGames@users.noreply.github.com> | 2023-07-01 23:41:16 -0400 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-07-02 14:16:32 +0200 |
commit | 8c46698f97bb22e3b16061912a34a03fe52da08b (patch) | |
tree | e790da034ee4fa2c90995d41dee92df027752bf9 /src/main/resources | |
parent | 3d719d9224023b0b97e9e7cdc20904367f27d269 (diff) | |
download | forge1.8.9template-8c46698f97bb22e3b16061912a34a03fe52da08b.tar.gz forge1.8.9template-8c46698f97bb22e3b16061912a34a03fe52da08b.tar.bz2 forge1.8.9template-8c46698f97bb22e3b16061912a34a03fe52da08b.zip |
Update dependencies and fix bugs
- Update Gradle to 8.2-bin
- Update Shadow to 8.1.1
- Update DevAuth to 1.1.2
- Update Mixin to 0.8.5
- Add some missed property substitutions
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/mcmod.info | 2 | ||||
-rw-r--r-- | src/main/resources/mixins.examplemod.json | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index e1f8be1..ab6d5dd 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -4,7 +4,7 @@ "name": "Xample Mod", "description": "A mod that is used as an example.", "version": "${version}", - "mcversion": "1.8.9", + "mcversion": "${mcversion}", "url": "https://github.com/romangraef/Forge1.8.9Template/", "updateUrl": "", "authorList": [ diff --git a/src/main/resources/mixins.examplemod.json b/src/main/resources/mixins.examplemod.json index ee27201..570a0d0 100644 --- a/src/main/resources/mixins.examplemod.json +++ b/src/main/resources/mixins.examplemod.json @@ -1,6 +1,6 @@ { - "package": "com.example.mixin", - "refmap": "mixins.examplemod.refmap.json", + "package": "${mixinGroup}", + "refmap": "mixins.${modid}.refmap.json", "minVersion": "0.7", "compatibilityLevel": "JAVA_8", "mixins": [ |