File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -35,26 +35,31 @@ minecraft {
35
35
workingDirectory project. file(' run' )
36
36
// Recommended logging data for a userdev environment
37
37
property ' forge.logging.markers' , ' SCAN,REGISTRIES,REGISTRYDUMP'
38
+
39
+ // Needed to make other mods with mixins be able to run in you development environment
38
40
property ' mixin.env.remapRefMap' , ' true'
39
41
property ' mixin.env.refMapRemappingFile' , " ${ projectDir} /build/createSrgToMcp/output.srg"
42
+
40
43
mods { examplemod { source sourceSets. main } }
41
44
}
42
45
43
46
server {
44
47
workingDirectory project. file(' run' )
45
48
// Recommended logging data for a userdev environment
46
49
property ' forge.logging.markers' , ' SCAN,REGISTRIES,REGISTRYDUMP'
50
+
51
+ // Needed to make other mods with mixins be able to run in you development environment
47
52
property ' mixin.env.remapRefMap' , ' true'
48
53
property ' mixin.env.refMapRemappingFile' , " ${ projectDir} /build/createSrgToMcp/output.srg"
54
+
49
55
mods { examplemod { source sourceSets. main } }
50
56
}
51
57
}
52
58
}
53
59
54
60
repositories {
55
- maven {
56
- url " https://nexus.resourcefulbees.com/repository/telepathicgrunt/"
57
- }
61
+ // Repo for getting Blame from
62
+ maven { url " https://nexus.resourcefulbees.com/repository/telepathicgrunt/" }
58
63
}
59
64
60
65
dependencies {
You can’t perform that action at this time.
0 commit comments