mirror of
https://github.com/JonasunderscoreJones/ConsoleMC.git
synced 2025-10-22 18:29:18 +02:00
Added Basic Functionality
This commit is contained in:
parent
a1444e4276
commit
c215bc41dd
27 changed files with 844 additions and 0 deletions
BIN
production/ConsoleMC.main/assets/consolemc/icon.png
Normal file
BIN
production/ConsoleMC.main/assets/consolemc/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 453 B |
BIN
production/ConsoleMC.main/assets/modid/icon.png
Normal file
BIN
production/ConsoleMC.main/assets/modid/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 453 B |
14
production/ConsoleMC.main/consolemc.mixins.json
Normal file
14
production/ConsoleMC.main/consolemc.mixins.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "me.jonasjones.consolemc.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
],
|
||||
"client": [
|
||||
"ExampleMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
38
production/ConsoleMC.main/fabric.mod.json
Normal file
38
production/ConsoleMC.main/fabric.mod.json
Normal 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": "*"
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
14
production/ConsoleMC.main/modid.mixins.json
Normal file
14
production/ConsoleMC.main/modid.mixins.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "net.fabricmc.example.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
],
|
||||
"client": [
|
||||
"ExampleMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
BIN
production/ConsoleMC.main/net/fabricmc/example/ExampleMod.class
Normal file
BIN
production/ConsoleMC.main/net/fabricmc/example/ExampleMod.class
Normal file
Binary file not shown.
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue