mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 12:07:27 +01:00
Fixes the Timestop spell (#21998)
* Fixes the Timestop spell * Update code/datums/spells/conjure.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --------- Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
targets -= T
|
||||
playsound(get_turf(src), cast_sound, 50, 1)
|
||||
|
||||
if(do_after(user, delay, target = user))
|
||||
if(delay <= 0 || do_after(user, delay, target = user))
|
||||
for(var/i=0,i<summon_amt,i++)
|
||||
if(!targets.len)
|
||||
break
|
||||
|
||||
@@ -225,11 +225,13 @@
|
||||
invocation_type = "shout"
|
||||
cooldown_min = 100
|
||||
summon_amt = 1
|
||||
delay = 0
|
||||
action_icon_state = "time"
|
||||
|
||||
summon_type = list(/obj/effect/timestop/wizard)
|
||||
aoe_range = 0
|
||||
|
||||
|
||||
/obj/effect/proc_holder/spell/aoe/conjure/carp
|
||||
name = "Summon Carp"
|
||||
desc = "This spell conjures a simple carp."
|
||||
|
||||
Reference in New Issue
Block a user