diff options
| author | miozune <miozune@gmail.com> | 2023-05-11 16:59:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-11 09:59:21 +0200 |
| commit | 3d3605a1f20bfcf164290b29c7632d3bdca00fe5 (patch) | |
| tree | 88b251616cae8d2da2f19369f387d55913cd1bd7 /gradle.properties | |
| parent | 76810fa8addf9f7a2cdb9e861798d315d0893581 (diff) | |
| download | GT5-Unofficial-3d3605a1f20bfcf164290b29c7632d3bdca00fe5.tar.gz GT5-Unofficial-3d3605a1f20bfcf164290b29c7632d3bdca00fe5.tar.bz2 GT5-Unofficial-3d3605a1f20bfcf164290b29c7632d3bdca00fe5.zip | |
Fix MetaTEs not being registered at all in non-dev env (#9)
* Fix MetaTEs not being registered at all in non-dev env
* Specify AT file name
Diffstat (limited to 'gradle.properties')
| -rw-r--r-- | gradle.properties | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gradle.properties b/gradle.properties index 9f8a68d39a..2ba431d3a7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -39,7 +39,7 @@ apiPackage = # Specify the configuration file for Forge's access transformers here. I must be placed into /src/main/resources/META-INF/ # Example value: mymodid_at.cfg -accessTransformersFile = +accessTransformersFile = ggfab_at.cfg # Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled! usesMixins = false @@ -59,4 +59,8 @@ forceEnableMixins = true # If enabled, you may use 'shadowImplementation' for dependencies. They will be integrated in your jar. It is your # responsibility check the licence and request permission for distribution, if required. usesShadowedDependencies = false + +# Uncomment this to disable spotless checks +# This should only be uncommented to keep it easier to sync with upstream/other forks. +# That is, if there is no other active fork/upstream, NEVER change this. disableSpotless = true |
