[MIRROR] de-reference save_data lists (#9067)

Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Kashargul <KashL@t-online.de>
This commit is contained in:
CHOMPStation2
2024-09-27 20:05:23 -07:00
committed by GitHub
parent 9e524184c1
commit f37f844f5a
10 changed files with 80 additions and 33 deletions

View File

@@ -18,7 +18,7 @@
pref.job_talon_med = save_data["job_talon_med"]
pref.job_talon_high = save_data["job_talon_high"]
//VOREStation Add End
pref.player_alt_titles = save_data["player_alt_titles"]
pref.player_alt_titles = check_list_copy(save_data["player_alt_titles"])
//CHOMPStation Add
pref.job_other_low = save_data["job_other_low"]
pref.job_other_med = save_data["job_other_med"]
@@ -41,7 +41,7 @@
save_data["job_talon_med"] = pref.job_talon_med
save_data["job_talon_high"] = pref.job_talon_high
//VOREStation Add End
save_data["player_alt_titles"] = pref.player_alt_titles
save_data["player_alt_titles"] = check_list_copy(pref.player_alt_titles)
//CHOMPStation Add
save_data["job_other_low"] = pref.job_other_low
save_data["job_other_med"] = pref.job_other_med