mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
[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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user