code folder. 221 files changed wew
This commit is contained in:
@@ -54,8 +54,7 @@
|
||||
if (istype(W, /obj/item/wirecutters))
|
||||
if (bulb)
|
||||
user.visible_message("[user] begins to disconnect [src]'s flashbulb.", "<span class='notice'>You begin to disconnect [src]'s flashbulb...</span>")
|
||||
playsound(src.loc, W.usesound, 100, 1)
|
||||
if(do_after(user, 30*W.toolspeed, target = src) && bulb)
|
||||
if(W.use_tool(src, user, 30, volume=50) && bulb)
|
||||
user.visible_message("[user] has disconnected [src]'s flashbulb!", "<span class='notice'>You disconnect [src]'s flashbulb.</span>")
|
||||
bulb.forceMove(loc)
|
||||
bulb = null
|
||||
@@ -74,8 +73,7 @@
|
||||
else if (istype(W, /obj/item/wrench))
|
||||
if(!bulb)
|
||||
to_chat(user, "<span class='notice'>You start unsecuring the flasher frame...</span>")
|
||||
playsound(loc, W.usesound, 50, 1)
|
||||
if(do_after(user, 40*W.toolspeed, target = src))
|
||||
if(W.use_tool(src, user, 40, volume=50))
|
||||
to_chat(user, "<span class='notice'>You unsecure the flasher frame.</span>")
|
||||
deconstruct(TRUE)
|
||||
else
|
||||
@@ -165,7 +163,7 @@
|
||||
|
||||
/obj/machinery/flasher/portable/attackby(obj/item/W, mob/user, params)
|
||||
if (istype(W, /obj/item/wrench))
|
||||
playsound(src.loc, W.usesound, 100, 1)
|
||||
W.play_tool_sound(src, 100)
|
||||
|
||||
if (!anchored && !isinspace())
|
||||
to_chat(user, "<span class='notice'>[src] is now secured.</span>")
|
||||
|
||||
Reference in New Issue
Block a user