mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
Update projectile_ch.dm (#11951)
This commit is contained in:
@@ -386,7 +386,7 @@ var/global/list/latejoin_tram = list()
|
||||
if(welder.remove_fuel(0,user) && welder && welder.isOn())
|
||||
to_chat(user, span_notice("You start to melt the ice off \the [src]"))
|
||||
playsound(src, welder.usesound, 50, 1)
|
||||
if(do_after(user, welderTime SECONDS))
|
||||
if(do_after(user, welderTime SECONDS, src))
|
||||
to_chat(user, span_notice("You finish melting the ice off \the [src]"))
|
||||
unFreeze()
|
||||
return
|
||||
@@ -410,7 +410,7 @@ var/global/list/latejoin_tram = list()
|
||||
|
||||
/obj/machinery/door/airlock/glass_external/freezable/proc/handleRemoveIce(obj/item/W as obj, mob/user as mob, var/time = 15 as num)
|
||||
to_chat(user, span_notice("You start to chip at the ice covering \the [src]"))
|
||||
if(do_after(user, text2num(time SECONDS)))
|
||||
if(do_after(user, text2num(time SECONDS), src))
|
||||
unFreeze()
|
||||
to_chat(user, span_notice("You finish chipping the ice off \the [src]"))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user