[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
🆑
fix: Fixed wallmounts not being mountable by using a screwdriver on them
/🆑
This commit is contained in:
SmArtKar
2024-09-21 00:10:12 +02:00
committed by GitHub
parent e5b7a8d526
commit 77a67fa4c5
+3 -3
View File
@@ -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)