From 3d3605a1f20bfcf164290b29c7632d3bdca00fe5 Mon Sep 17 00:00:00 2001 From: miozune Date: Thu, 11 May 2023 16:59:21 +0900 Subject: 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 --- gradle.properties | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gradle.properties') 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 -- cgit