diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index 9dc72b44df..498990fcf3 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -37,7 +37,7 @@ /obj/item/toy/plush/random_snowflake/Initialize(mapload, set_snowflake_id) . = ..() var/list/configlist = CONFIG_GET(keyed_list/snowflake_plushies) - var/id = SAFEPICK(configlist) + var/id = safepick(configlist) if(!id) return set_snowflake_from_config(id)