This commit is contained in:
moonleay 2024-04-22 04:43:38 +02:00
commit a81900c6e8
Signed by: moonleay
GPG key ID: 82667543CCD715FB
16 changed files with 750 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{
"schemaVersion": 1,
"id": "${modId}",
"version": "${modVersion}",
"name": "${modName}",
"description": "An open source building assist mod featuring vim-like modes.",
"authors": [
"moonleay"
],
"contact": {},
"license": "GPL-3.0",
"environment": "*",
"entrypoints": {
"client": [
{
"adapter": "kotlin",
"value": "net.moonleay.mods.gimble.client.ClientMain"
}
],
"main": [
{
"adapter": "kotlin",
"value": "net.moonleay.mods.gimble.Main"
}
]
},
"mixins": [
"${modId}.mixins.json"
],
"depends": {
"fabricloader": ">=${fabricLoaderVersion}",
"fabric": "*",
"fabric-language-kotlin": ">=${fabricKotlinVersion}",
"huebcraftconfiglib": "${configlibVersion}",
"minecraft": "${minecraftVersion}"
},
"accessWidener": "${modId}.accesswidener"
}

View file

@ -0,0 +1,4 @@
accessWidener v2 named
accessible method net/minecraft/client/MinecraftClient handleBlockBreaking (Z)V
accessible method net/minecraft/client/network/ClientPlayerInteractionManager sendSequencedPacket (Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/network/SequencedPacketCreator;)V

View file

@ -0,0 +1,16 @@
{
"required": true,
"minVersion": "0.8",
"package": "net.moonleay.mods.gimble.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"HudMixin",
"NormalModeMixin",
"ReplaceModeMixin"
],
"injectors": {
"defaultRequire": 1
}
}