Commit b946557b9d20118f242be0c073a0fb651d465bd8

Authored by Mumfrey
1 parent e9bc0b2b

ExampleMod for 1.9.4

build.gradle
... ... @@ -29,8 +29,8 @@ group = "com.mumfrey.examplemod" // http://maven.apache.org/guides/mini/guide-na
29 29 archivesBaseName = "examplemod"
30 30  
31 31 minecraft {
32   - version = "1.9"
33   - mappings = "snapshot_20160410"
  32 + version = "1.9.4"
  33 + mappings = "snapshot_20160517"
34 34 runDir = "run"
35 35 }
36 36  
... ... @@ -48,7 +48,7 @@ mixin {
48 48 litemod {
49 49 json {
50 50 name = "test"
51   - mcversion = "1.9.0"
  51 + mcversion = "1.9.4"
52 52 mixinConfigs += "mixins.example.json"
53 53 }
54 54 }
... ...
src/main/resources/litemod.json
1 1 {
2 2 "name": "example",
3 3 "version": 0.0,
4   - "mcversion": "1.9",
  4 + "mcversion": "1.9.4",
5 5 "mixinConfigs": [
6 6 "mixins.example.json"
7 7 ]
... ...