From 07219e311a16393965eb1d6a187e2622afd7c810 Mon Sep 17 00:00:00 2001 From: SandPoot Date: Fri, 8 Sep 2023 21:17:01 -0300 Subject: [PATCH] final tg sync --- code/datums/screentips/screentips.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/screentips/screentips.dm b/code/datums/screentips/screentips.dm index 899d0d7f50..94dedbeac9 100644 --- a/code/datums/screentips/screentips.dm +++ b/code/datums/screentips/screentips.dm @@ -18,7 +18,7 @@ GLOBAL_LIST_INIT_TYPED(screentip_context_icons, /image, prepare_screentip_contex * - allow_image = boolean (not required) */ /proc/build_context(list/context, key, allow_image) - if(!(length(context) && length(context[key]) && key)) + if(!length(context) || !length(context[key]) || !key) return "" var/list/to_add for(var/intent in context[key])