Commit 7aca387f8038c699e839ad29a8d99c74376a736c

Authored by Mumfrey
1 parent e8819ec7

ExampleMod for 1.11

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