From eef8a2ef5a8af593e8e1cc2dca5e4deca5148ec7 Mon Sep 17 00:00:00 2001 From: Sorrowfulwinds Date: Sat, 26 Apr 2025 13:18:04 -0500 Subject: [PATCH] Fix cursor icon bug in datum/ability_handler/proc/process_ability() (#7099) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit looks like reticles were moved a folder deeper, fixes this. ## About The Pull Request Found a dmi file path that was targeting nothing. I'm assuming the next folder deeper is what was wanted. ## Why It's Good For The Game Bug fixes 💯 ## Changelog -Fix filepath in ability_handler proc :cl: fix: fixes cursor reticle bug in ability_handler /:cl: --- code/datums/ability_handler.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/ability_handler.dm b/code/datums/ability_handler.dm index 269acce5120..890afc2f02f 100644 --- a/code/datums/ability_handler.dm +++ b/code/datums/ability_handler.dm @@ -15,7 +15,7 @@ else target_type = null return - ab.owner.client.mouse_pointer_icon = file("icons/screen/mouse_pointers/standard1.dmi") + ab.owner.client.mouse_pointer_icon = file("icons/screen/mouse_pointers/reticle/standard1.dmi") ///Is called by a click if there's an ability in 'current' /datum/ability_handler/proc/process_click(mob/user, atom/A)