From b12c751d48af9401b6370f3498067c250950c028 Mon Sep 17 00:00:00 2001 From: Vi3trice <80771500+Vi3trice@users.noreply.github.com> Date: Sun, 30 Oct 2022 11:51:08 -0400 Subject: [PATCH] It's getting confused with that macro (#19521) --- code/modules/tooltip/tooltip.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/tooltip/tooltip.dm b/code/modules/tooltip/tooltip.dm index 842d83c3883..ea6e8c38d47 100644 --- a/code/modules/tooltip/tooltip.dm +++ b/code/modules/tooltip/tooltip.dm @@ -105,6 +105,9 @@ Notes: theme = lowertext(user.client.prefs.UI_style) if(!theme) theme = "default" + // Strip macros from item names + title = replacetext(title, "\proper", "") + title = replacetext(title, "\improper", "") user.client.tooltips.show(tip_src, params, title, content, theme)