Makes uses of do_after sane (#18334)

* Prevents insta-actions

* Do_after sanity

NOTE: NUKE do_after_action

* Update bonfire.dm

* The  rest of them

Also fixes a tpyo

* no minitest :)

* .

* .

* Gets rid of the slowdown for now

---------

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
Cameron Lennox
2025-09-07 20:25:08 -04:00
committed by GitHub
parent 736fe6ef28
commit d73f6b8dbd
330 changed files with 682 additions and 690 deletions
@@ -78,7 +78,7 @@
// Display action
name = "[human_owner]'s [feedback]"
user.visible_message("\The [user] starts to connect the hose to \the [human_owner]'s [feedback]...")
if(!do_after(user,7 SECONDS,human_owner))
if(!do_after(user, 7 SECONDS, target = human_owner))
to_chat(user,span_warning("You couldn't connect the hose!"))
return FALSE
if(other.get_hose() || get_hose()) // SHouldn't be connected to anything yet!
@@ -33,7 +33,7 @@
to_chat(src, span_warning("There is too much light here for your trap to last!"))
return FALSE
if(do_after(src, 10))
if(do_after(src, 1 SECOND, target = src))
if(SK.in_phase)
new /obj/effect/abstract/dark_maw(loc, src, TRUE)
else
@@ -64,7 +64,7 @@
smoke.start()
src.visible_message(span_notice("[src] begins pulling dark energies around themselves."))
if(do_after(src, tunnel_time))
if(do_after(src, tunnel_time, target = src))
if(SK.created_dark_tunnel) //check again because the user may have queued this up multiple times.
to_chat(src, span_warning("You have already made a tunnel to the Dark!"))
return FALSE
+2 -2
View File
@@ -115,7 +115,7 @@
to_chat(owner, span_warning("You can't weave here!"))
return
if(do_after(owner, desired_result.time))
if(do_after(owner, desired_result.time, target = src))
if(desired_result.cost > silk_reserve)
to_chat(owner, span_warning("You don't have enough silk to weave that!"))
return
@@ -168,7 +168,7 @@
to_chat(owner, span_warning("You can't weave here!"))
return
if(do_after(owner, desired_result.time))
if(do_after(owner, desired_result.time, target = src))
if(desired_result.cost > silk_reserve)
to_chat(owner, span_warning("You don't have enough silk to weave that!"))
return
+1 -1
View File
@@ -76,7 +76,7 @@
user.visible_message(span_warning("[user] starts climbing onto \the [climbed_thing]!"))
LAZYADDASSOCLIST(current_climbers, climbed_thing, user)
if(do_after(user,(issmall(user) ? delay_time * 0.6 : delay_time)))
if(do_after(user,(issmall(user) ? delay_time * 0.6 : delay_time), target = user))
if(can_climb(climbed_thing, user, post_climb_check=1))
climb_to(climbed_thing, user)
if(get_turf(user) == get_turf(climbed_thing))