From 1b27fda9e5531e3d7791edc0aec046f4ffc54710 Mon Sep 17 00:00:00 2001 From: Werner Date: Wed, 15 Nov 2017 06:32:08 +0100 Subject: [PATCH] Fixes ccia actions not clearing when the char is changed (#3847) Fixes the following issue: Char A joins with ccia actions Char A cryos Char B is loaded and joins CCIA Actions from A show up at B Its caused by not clearing the previous list of ccia actions before loading in the actions for Char B --- code/modules/client/preference_setup/other/01_incidents.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/client/preference_setup/other/01_incidents.dm b/code/modules/client/preference_setup/other/01_incidents.dm index ab09f454992..0b888cd9834 100644 --- a/code/modules/client/preference_setup/other/01_incidents.dm +++ b/code/modules/client/preference_setup/other/01_incidents.dm @@ -4,6 +4,7 @@ /datum/category_item/player_setup_item/other/incidents/load_special(var/savefile/S) pref.incidents = list() + pref.ccia_actions = list() //Special Aurora Snowflake to load in the ccia actions and persistant incidents if (config.sql_saves) // Doesnt work without db