summary refs log tree commit diff stats
path: root/src/main/resources
diff options
context:
space:
mode:
authorasie <kontakt@asie.pl>2018-12-31 16:05:40 +0100
committerasie <kontakt@asie.pl>2018-12-31 16:05:40 +0100
commit2c09427cb1e973d95402797bc2ff1bff42e7ffff (patch)
treee937e69ea36b598d8117f5140d7081e1897d0ddd /src/main/resources
parent21fe396a5ec7f0166f915abf9b052986143b259f (diff)
use array initializer value as the default for example
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/fabric.mod.json4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index d08dfa0..180f60b 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -4,7 +4,9 @@
   "description": "This is an example description! Tell everyone what your mod is about!",
   "version": "1.0.0",
   "side": "universal",
-  "initializer": "net.fabricmc.example.ExampleMod",
+  "initializers": [
+    "net.fabricmc.example.ExampleMod"
+  ],
   "requires": {
     "fabric": "*"
   },