diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2022-12-02 18:47:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 11:47:58 +0100 |
commit | cbd693f6a29a3c1b2d056cd23f47b610d96c2b34 (patch) | |
tree | 761ba47ee5d26675a747354701468e5c607cf0cf /build.gradle | |
parent | 735212f8b19e7baf9850a25a8f023d7e208139be (diff) | |
download | GT5-Unofficial-cbd693f6a29a3c1b2d056cd23f47b610d96c2b34.tar.gz GT5-Unofficial-cbd693f6a29a3c1b2d056cd23f47b610d96c2b34.tar.bz2 GT5-Unofficial-cbd693f6a29a3c1b2d056cd23f47b610d96c2b34.zip |
add API to register other simple block as valid boroglass in multi (#240)
* add API to register other simple block as valid boroglass in multi
* remove raw access to allLevels
* fix copy paste error
Former-commit-id: e11e3f9634c16d15c69862c170c98d30669b0a8e
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle index 030dc18539..89350b8a35 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,8 @@ -//version: 1666118075 +//version: 1669411416 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. - Please check https://github.com/GTNewHorizons/ExampleMod1.7.10/blob/main/build.gradle for updates. + Please check https://github.com/GTNewHorizons/ExampleMod1.7.10/blob/master/build.gradle for updates. */ @@ -338,10 +338,10 @@ dependencies { annotationProcessor('org.ow2.asm:asm-debug-all:5.0.3') annotationProcessor('com.google.guava:guava:24.1.1-jre') annotationProcessor('com.google.code.gson:gson:2.8.6') - annotationProcessor('org.spongepowered:mixin:0.8.5-GTNH:processor') + annotationProcessor('com.gtnewhorizon:gtnhmixins:2.1.1:processor') } if (usesMixins.toBoolean() || forceEnableMixins.toBoolean()) { - compile('com.gtnewhorizon:gtnhmixins:2.0.1') + compile('com.gtnewhorizon:gtnhmixins:2.1.1') } } |