diff --git a/code/__DEFINES/client.dm b/code/__DEFINES/client.dm index 0008a736acd..453bd1aaeeb 100644 --- a/code/__DEFINES/client.dm +++ b/code/__DEFINES/client.dm @@ -5,11 +5,5 @@ /// Should return the boolean value of the fully_created var, which should be TRUE if New() has finished running. FALSE otherwise. #define VALIDATE_CLIENT_INITIALIZATION(target) (target.fully_created) -/// The minimum client BYOND build to disable screentip icons for. -#define MIN_BYOND_BUILD_DISABLE_SCREENTIP_ICONS 1657 -/// The maximum client BYOND build to disable screentip icons for. -/// Update this whenever https://www.byond.com/forum/post/2967731 is fixed. -#define MAX_BYOND_BUILD_DISABLE_SCREENTIP_ICONS 1699 - /// Aghosting AND APPERANTLY STEALTHMINNING sets your ckey/key == "@[old_key]" because it hates me. this detects that #define IS_FAKE_KEY(key) (key && key[1] == "@") diff --git a/code/game/atom/_atom.dm b/code/game/atom/_atom.dm index 31a7206ae6c..2f891c40d3d 100644 --- a/code/game/atom/_atom.dm +++ b/code/game/atom/_atom.dm @@ -886,9 +886,6 @@ if (contextual_screentip_returns & CONTEXTUAL_SCREENTIP_SET) var/screentip_images = active_hud.screentip_images - // Disable screentip images for clients affected by https://www.byond.com/forum/post/2967731 - if(ISINRANGE(client?.byond_build, MIN_BYOND_BUILD_DISABLE_SCREENTIP_ICONS, MAX_BYOND_BUILD_DISABLE_SCREENTIP_ICONS)) - screentip_images = FALSE // LMB and RMB on one line... var/lmb_text = build_context(context, SCREENTIP_CONTEXT_LMB, screentip_images) var/rmb_text = build_context(context, SCREENTIP_CONTEXT_RMB, screentip_images) diff --git a/icons/ui/screentips/cursor_hints.dmi b/icons/ui/screentips/cursor_hints.dmi index 2fdbb2d04d5..dde4f1e7072 100644 Binary files a/icons/ui/screentips/cursor_hints.dmi and b/icons/ui/screentips/cursor_hints.dmi differ