Skip to content

Commit

Permalink
Now it is done
Browse files Browse the repository at this point in the history
  • Loading branch information
EnnuiL committed Dec 27, 2023
1 parent 143586c commit fbbab25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ public static class TweaksConfig extends Section {
@Comment("Shows toasts when the server imposes a restriction.")
public final TrackedValue<Boolean> show_restriction_toasts = this.value(true);

// TODO - Revert default value on 5.0.0
// TODO - Enable it again during eternal betas!
@WidgetSize(Size.HALF)
@Comment("Prints a random owo in the console when the game starts. Enabled by default until full release.")
public final TrackedValue<Boolean> print_owo_on_start = this.value(true);
@Comment("Prints a random owo in the console when the game starts.")
public final TrackedValue<Boolean> print_owo_on_start = this.value(false);
}

// TODO - What if we had a secret Debug section?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,8 @@ public void resetToPreset(ZoomPresets preset) {
Map.entry(OkZoomerConfigManager.CONFIG.tweaks.use_spyglass_texture, preset == ZoomPresets.SPYGLASS ? true : false),
Map.entry(OkZoomerConfigManager.CONFIG.tweaks.use_spyglass_sounds, preset == ZoomPresets.SPYGLASS ? true : false),
Map.entry(OkZoomerConfigManager.CONFIG.tweaks.show_restriction_toasts, true),
Map.entry(OkZoomerConfigManager.CONFIG.tweaks.print_owo_on_start, preset == ZoomPresets.CLASSIC ? false : true)
//Map.entry(OkZoomerConfigManager.CONFIG.tweaks.print_owo_on_start, preset == ZoomPresets.CLASSIC ? false : true)
Map.entry(OkZoomerConfigManager.CONFIG.tweaks.print_owo_on_start, false)
);

this.newValues.clear();
Expand Down

0 comments on commit fbbab25

Please sign in to comment.