Skip to content

Commit

Permalink
configure_v3: change default value for backgrounds_updates to false
Browse files Browse the repository at this point in the history
Like commit 5421869, but in the place where
it actually matters.
  • Loading branch information
brliron committed Jun 14, 2024
1 parent 4e87e66 commit bf5148e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thcrap_configure_v3/Runconfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class GlobalConfig

public GlobalConfig()
{
background_updates = ThcrapDll.globalconfig_get_boolean("background_updates", true);
background_updates = ThcrapDll.globalconfig_get_boolean("background_updates", false);
time_between_updates = ThcrapDll.globalconfig_get_integer("time_between_updates", 5);
update_at_exit = ThcrapDll.globalconfig_get_boolean("update_at_exit", false);
update_others = ThcrapDll.globalconfig_get_boolean("update_others", true);
Expand Down

0 comments on commit bf5148e

Please sign in to comment.