mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-29 11:31:51 +00:00
Fixes powertool sprites, fixes unfastening atmospheric devices
This commit is contained in:
@@ -73,4 +73,4 @@
|
||||
if (level==1 && isturf(T) && !T.is_plating())
|
||||
to_chat(user, "<span class='warning'>You must remove the plating first.</span>")
|
||||
return TRUE
|
||||
return default_deconstruction_wrench(user, W)
|
||||
return default_deconstruction_wrench(W, user)
|
||||
|
||||
@@ -163,5 +163,5 @@
|
||||
/obj/machinery/atmospherics/unary/outlet_injector/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob)
|
||||
if (!W.get_tool_quality(TOOL_WRENCH))
|
||||
return ..()
|
||||
return default_deconstruction_wrench(user, W)
|
||||
return default_deconstruction_wrench(W, user)
|
||||
|
||||
|
||||
@@ -425,7 +425,7 @@
|
||||
if (node && node.level==1 && isturf(T) && !T.is_plating())
|
||||
to_chat(user, "<span class='warning'>You must remove the plating first.</span>")
|
||||
return TRUE
|
||||
return default_deconstruction_wrench(user, W)
|
||||
return default_deconstruction_wrench(W, user)
|
||||
|
||||
#undef DEFAULT_PRESSURE_DELTA
|
||||
|
||||
|
||||
@@ -273,7 +273,7 @@
|
||||
if (node && node.level==1 && isturf(T) && !T.is_plating())
|
||||
to_chat(user, "<span class='warning'>You must remove the plating first.</span>")
|
||||
return TRUE
|
||||
return default_deconstruction_wrench(user, W)
|
||||
return default_deconstruction_wrench(W, user)
|
||||
|
||||
|
||||
/obj/machinery/atmospherics/unary/vent_scrubber/examine(mob/user)
|
||||
|
||||
Reference in New Issue
Block a user