From cf3c6009383123e8a2e67911e8a28f667fb60d38 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Tue, 13 Jul 2021 22:13:25 -0700 Subject: [PATCH] doy --- code/modules/tooltip/tooltip.dm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/code/modules/tooltip/tooltip.dm b/code/modules/tooltip/tooltip.dm index 6cf3051715..f9efd7d9c1 100644 --- a/code/modules/tooltip/tooltip.dm +++ b/code/modules/tooltip/tooltip.dm @@ -138,11 +138,10 @@ Notes: . = ..() if(tooltips) if(!QDELETED(src)) - var/get_tooltip_data = get_tooltip_data() - if(length(get_tooltip_data)) - examine_list = get_tooltip_data - var/examine_data = examine_list.Join("
") - openToolTip(usr, src, params, title = name, content = examine_data) + var/list/tooltip_data = get_tooltip_data() + if(length(tooltip_data)) + var/examine_data = tooltip_data.Join("
") + openToolTip(usr, src, params, title = name, content = examine_data) /atom/movable/MouseExited(location, control, params) . = ..()