Time to snort some caffeine baby 🚀 🚀 🚀

This commit is contained in:
Aizistral
2026-01-25 00:59:03 +01:00
commit ce0695d6f9
33 changed files with 1162 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{
"schemaVersion": 1,
"id": "nochatrestrictions",
"version": "${version}",
"name": "No Chat Restrictions",
"description": "A mod dedicated to removing restrictions around the use of multiplayer features, including in-game chat.",
"authors": [
"Aizistral"
],
"contact": {
"homepage": "https://modrinth.com/project/no-chat-restrictions",
"sources": "https://github.com/Aizistral-Studios/No-Chat-Restrictions",
"issues": "https://github.com/Aizistral-Studios/No-Chat-Restrictions/issues"
},
"license": "WTFPL",
"environment": "*",
"entrypoints": {
"main": [
"com.aizistral.nochatrestrictions.NoChatRestrictions"
]
},
"mixins": [
"nochatrestrictions.mixins.json"
],
"depends": {
"fabricloader": ">=0.18.4",
"minecraft": "~1.16.4",
"java": ">=8",
"fabric": "*"
}
}

View File

@@ -0,0 +1,16 @@
{
"required": true,
"package": "com.aizistral.nochatrestrictions.mixins",
"compatibilityLevel": "JAVA_8",
"minVersion": "0.8",
"mixins": [],
"client": [
"MixinMinecraft"
],
"injectors": {
"defaultRequire": 1
},
"overwrites": {
"requireAnnotations": true
}
}