fabric: version-lock fabric.mod.json

This is intended to reduce user errors where e.g. someone uses the
1.19 jar on 1.19.2. Previously this would lead to unspecific mixin
errors; with this change, a helpful message is shown:

Mod 'Dynmap' (dynmap) 3.4-SNAPSHOT requires version 1.19 of 'Minecraft' (minecraft), but only the wrong version is present: 1.19.2!
This commit is contained in:
Kosma Moczek 2022-08-11 20:13:17 +02:00
parent a86320952d
commit a80be9890e
4 changed files with 4 additions and 4 deletions

View file

@ -28,6 +28,6 @@
"depends": {
"fabricloader": ">=0.14.6",
"fabric": ">=0.55.2",
"minecraft": "1.19.x"
"minecraft": "1.19"
}
}