Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Fix a stupid bug and I am SB #13

Merged
merged 2 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ usesMixins = true
separateMixinSourceSet =

# Adds some debug arguments like verbose output and class export.
usesMixinDebug = true
usesMixinDebug = false

# Specify the location of your implementation of IMixinConfigPlugin. Leave it empty otherwise.
mixinPlugin = MixinPlugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public enum Tweakers {
public static void initialize() {
for (Tweakers tweaker : Tweakers.values()) {
if (tweaker.enabled) {
tweaker.tweaker.apply();
tweaker.tweaker.apply0();
}
}
}
Expand Down