diff options
author | Prospector <6166773+Prospector@users.noreply.github.com> | 2018-12-12 18:18:40 -0800 |
---|---|---|
committer | Shadowfacts <shadowfacts@users.noreply.github.com> | 2018-12-12 21:18:40 -0500 |
commit | 8b0e73fb9a2a98bf859aca12d190dbe449912e63 (patch) | |
tree | ea34f0646a196af3514b930c39587f5ffacbdc4b /src | |
parent | c168b5b1f43cc1ea311f29352c334ba4074915af (diff) |
Add description to example mod (#2)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/resources/fabric.mod.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 406aeae..d08dfa0 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,6 +1,7 @@ { "id": "modid", "name": "Example Mod", + "description": "This is an example description! Tell everyone what your mod is about!", "version": "1.0.0", "side": "universal", "initializer": "net.fabricmc.example.ExampleMod", @@ -11,4 +12,4 @@ "client": "modid.client.json", "common": "modid.common.json" } -} \ No newline at end of file +} |