aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/acron.mixins.json21
-rw-r--r--src/main/resources/fabric.mod.json24
2 files changed, 0 insertions, 45 deletions
diff --git a/src/main/resources/acron.mixins.json b/src/main/resources/acron.mixins.json
deleted file mode 100644
index 5d0911f..0000000
--- a/src/main/resources/acron.mixins.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "required": true,
- "minVersion": "0.8",
- "package": "moe.ymc.acron.mixin",
- "compatibilityLevel": "JAVA_8",
- "mixins": [
- "CommandManagerMixin",
- "LivingEntityMixin",
- "MinecraftDedicatedServerMixin",
- "MinecraftServerMixin",
- "ServerLoginNetworkHandlerMixin",
- "ServerNetworkIoMixin",
- "ServerPlayerEntityMixin",
- "ServerPlayNetworkHandlerMixin"
- ],
- "client": [
- ],
- "injectors": {
- "defaultRequire": 1
- }
-}
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
deleted file mode 100644
index 999aeeb..0000000
--- a/src/main/resources/fabric.mod.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "schemaVersion": 1,
- "id": "acron",
- "version": "${version}",
- "name": "Acron",
- "description": "WebSocket based remote server management",
- "authors": ["YuutaW"],
- "contact": {},
- "license": "GPL-2.0",
- "icon": "assets/acron/icon.png",
- "environment": "server",
- "entrypoints": {
- "main": [
- "moe.ymc.acron.Acron"
- ]
- },
- "mixins": [
- "acron.mixins.json"
- ],
- "depends": {
- "fabricloader": ">=0.14.4",
- "minecraft": "1.17.1"
- }
-}