diff options
author | Keuin <[email protected]> | 2020-04-23 00:16:13 +0800 |
---|---|---|
committer | keuin <[email protected]> | 2020-04-23 00:20:29 +0800 |
commit | 28ebd3ae91dc6087a9f9acd93f80dd92be2d64aa (patch) | |
tree | 9a051d4784cd41953a5c6aa02e55005e14d907bf /src/main/resources/fabric.mod.json | |
parent | d00b439204b7ddfe381f1ff7c0dc1f02e16da8de (diff) |
Finish backup.
TODO:
- restore
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 197c798..0d471c0 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,35 +1,31 @@ { "schemaVersion": 1, - "id": "modid", + "id": "kbackupfabric", "version": "${version}", - - "name": "Example Mod", - "description": "This is an example description! Tell everyone what your mod is about!", + "name": "KBackup Fabric", + "description": "A simple backup mod for Minecraft fabric server", "authors": [ - "Me!" + "Keuin" ], "contact": { - "homepage": "https://fabricmc.net/", - "sources": "https://github.com/FabricMC/fabric-example-mod" + "homepage": "https://lab.keuin.cc/kbackup", + "sources": "https://github.com/keuin" }, - - "license": "CC0-1.0", - "icon": "assets/modid/icon.png", - + "license": "GPL V3", + "icon": "assets/kbackupfabric/icon.png", "environment": "*", "entrypoints": { "main": [ - "net.fabricmc.example.ExampleMod" + "com.keuin.kbackupfabric.KBPluginInitializer" ] }, "mixins": [ - "modid.mixins.json" ], "depends": { "fabricloader": ">=0.7.4", "fabric": "*", - "minecraft": "1.15.x" + "minecraft": "1.14.x" }, "suggests": { "flamingo": "*" |