Added Basic Functionality

This commit is contained in:
J-onasJones 2022-06-12 00:06:06 +02:00
parent a1444e4276
commit c215bc41dd
27 changed files with 844 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

View file

@ -0,0 +1,14 @@
{
"required": true,
"minVersion": "0.8",
"package": "me.jonasjones.consolemc.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ExampleMixin"
],
"injectors": {
"defaultRequire": 1
}
}

View file

@ -0,0 +1,38 @@
{
"schemaVersion": 1,
"id": "consolemc",
"version": "v0.0.1-alpha1",
"name": "ConsoleMC",
"description": "A mod that allows you to run console commands on the server from the minecraft chat.",
"authors": [
"Jonas_Jones"
],
"contact": {
"homepage": "http://jonasjones.me/consolemc",
"sources": "https://github.com/J-onasJones/ConsoleMC"
},
"license": "CC0-1.0",
"icon": "assets/consolemc/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"me.jonasjones.consolemc.ConsoleMC"
]
},
"mixins": [
"consolemc.mixins.json"
],
"depends": {
"fabricloader": ">=0.14.6",
"fabric": "*",
"minecraft": "~1.19",
"java": ">=17"
},
"suggests": {
"another-mod": "*"
}
}

View file

@ -0,0 +1,14 @@
{
"required": true,
"minVersion": "0.8",
"package": "net.fabricmc.example.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ExampleMixin"
],
"injectors": {
"defaultRequire": 1
}
}