Update projectile_ch.dm (#11951)

This commit is contained in:
Cameron Lennox
2025-11-09 03:05:35 -05:00
committed by GitHub
parent 54b9b3f6bc
commit 66871246c5
2 changed files with 5 additions and 5 deletions

View File

@@ -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]"))