We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 564f9b0 commit 3270870Copy full SHA for 3270870
src/config.cpp
@@ -61,7 +61,7 @@ WeaponConfig WeaponConfig::from_toml(const toml::table &table) {
61
cfg.start_bullet = table["start_bullet"].value_or(cfg.start_bullet);
62
cfg.fov = table["fov"].value_or(cfg.fov);
63
cfg.smooth = table["smooth"].value_or(cfg.smooth);
64
- cfg.rcs_smooth = table["smooth_rcs"].value_or(cfg.rcs_smooth);
+ cfg.rcs_smooth = table["rcs_smooth"].value_or(cfg.rcs_smooth);
65
cfg.enabled = table["enabled"].value_or(cfg.enabled);
66
cfg.aim_lock = table["aim_lock"].value_or(cfg.aim_lock);
67
cfg.visibility_check = table["visibility_check"].value_or(cfg.visibility_check);
0 commit comments