From 77a67fa4c52599c6d85111e7f49768d8a1322291 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Sat, 21 Sep 2024 00:10:12 +0200 Subject: [PATCH] [NO GBP] Fixes wallmounts not being mountable by using a screwdriver on them (#86768) ## About The Pull Request Consequence of #86661, god damnit Closes #86767 ## Changelog :cl: fix: Fixed wallmounts not being mountable by using a screwdriver on them /:cl: --- code/game/objects/items/wall_mounted.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/wall_mounted.dm b/code/game/objects/items/wall_mounted.dm index ef19205cf80..2db970b556a 100644 --- a/code/game/objects/items/wall_mounted.dm +++ b/code/game/objects/items/wall_mounted.dm @@ -61,9 +61,9 @@ /obj/item/wallframe/screwdriver_act(mob/living/user, obj/item/tool) // For camera-building borgs - var/turf/T = get_step(get_turf(user), user.dir) - if(iswallturf(T)) - T.attackby(src, user) + var/turf/wall_turf = get_step(get_turf(user), user.dir) + if(iswallturf(wall_turf)) + wall_turf.item_interaction(user, src) return ITEM_INTERACT_SUCCESS /obj/item/wallframe/wrench_act(mob/living/user, obj/item/tool)