Make support transparency invisible by default

This commit is contained in:
Hielke Morsink 2022-08-08 19:04:02 +02:00
parent 980e3cbc4c
commit 9e1b24d977
No known key found for this signature in database
GPG key ID: FE0B343DF883E7F2

View file

@ -222,7 +222,7 @@ namespace Config
model->invisible_trees = reader->GetBoolean("invisible_trees", false);
model->invisible_scenery = reader->GetBoolean("invisible_scenery", false);
model->invisible_paths = reader->GetBoolean("invisible_paths", false);
model->invisible_supports = reader->GetBoolean("invisible_supports", false);
model->invisible_supports = reader->GetBoolean("invisible_supports", true);
model->last_version_check_time = reader->GetInt64("last_version_check_time", 0);
}