chore: moved group to net.moonleay

fix: fixed camera going meyhem when going 3rd person in NoClip
This commit is contained in:
moonleay 2024-04-23 18:12:39 +02:00
parent 0cd271f139
commit 7383fa09e8
Signed by: moonleay
GPG key ID: 82667543CCD715FB
31 changed files with 125 additions and 107 deletions

View file

@ -14,19 +14,19 @@
"client": [
{
"adapter": "kotlin",
"value": "net.moonleay.mods.gimble.client.ClientMain"
"value": "net.moonleay.gimble.client.ClientMain"
}
],
"main": [
{
"adapter": "kotlin",
"value": "net.moonleay.mods.gimble.Main"
"value": "net.moonleay.gimble.Main"
}
],
"fabric-datagen": [
{
"adapter": "kotlin",
"value": "net.moonleay.mods.gimble.datagen.DataGenerator"
"value": "net.moonleay.gimble.datagen.DataGenerator"
}
]
},

View file

@ -1,13 +1,14 @@
{
"required": true,
"minVersion": "0.8",
"package": "net.moonleay.mods.gimble.mixin",
"package": "net.moonleay.gimble.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
"NoClipMixin"
],
"client": [
"HudMixin",
"NoClipCameraFix",
"NormalModeMixin",
"ReplaceModeMixin"
],