Skip to content

Commit 3270870

Browse files
authored
fix rcs smooth not saving
1 parent 564f9b0 commit 3270870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ WeaponConfig WeaponConfig::from_toml(const toml::table &table) {
6161
cfg.start_bullet = table["start_bullet"].value_or(cfg.start_bullet);
6262
cfg.fov = table["fov"].value_or(cfg.fov);
6363
cfg.smooth = table["smooth"].value_or(cfg.smooth);
64-
cfg.rcs_smooth = table["smooth_rcs"].value_or(cfg.rcs_smooth);
64+
cfg.rcs_smooth = table["rcs_smooth"].value_or(cfg.rcs_smooth);
6565
cfg.enabled = table["enabled"].value_or(cfg.enabled);
6666
cfg.aim_lock = table["aim_lock"].value_or(cfg.aim_lock);
6767
cfg.visibility_check = table["visibility_check"].value_or(cfg.visibility_check);

0 commit comments

Comments
 (0)