Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ private GTEarlyConfig(File file) {
// Defines the default rules which can be configured by the user or other mods.
// You must manually add a rule for any new mixins not covered by an existing package rule.

Option option = addMixinRule(SAFE_MODE, false);
Option option = addMixinRule(SAFE_MODE, true);
option.addComment(
"Whether to use a 'safe mode' for bloom rendering",
"NOTE: considerably slower than the normal logic, but likely fixes compatibility issues with other mods.",
"NOTE: may be slower than 'normal' logic, but is considerably more stable and less prone to compatibility issues with other mods.",
"Requires restarting the client to take effect.");

addDelegateRule("client.bloom.safemode", SAFE_MODE, false);
Expand Down
Loading