Skip to content

Commit

Permalink
Slime fix (#8465)
Browse files Browse the repository at this point in the history
* Update recipes.dm

* Update recipes.dm

* Update recipes.dm

* Update recipes.dm

* Update recipes.dm

* Update recipes.dm
  • Loading branch information
Hanz-Moon authored Mar 28, 2024
1 parent ebf7936 commit f7e124b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/reagents/recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@

/datum/chemical_reaction/slime/freeze/on_reaction(var/datum/reagents/holder)
..()
addtimer(CALLBACK(src, PROC_REF(do_freeze), get_turf(holder.my_atom), 5 SECONDS))
addtimer(CALLBACK(src, PROC_REF(do_freeze), get_turf(holder.my_atom)), 5 SECONDS)

/datum/chemical_reaction/slime/freeze/proc/do_freeze(turf/target)
playsound(target, 'sound/effects/phasein.ogg', 100, 1)
Expand Down Expand Up @@ -934,7 +934,7 @@

/datum/chemical_reaction/slime/fire/on_reaction(var/datum/reagents/holder)
..()
addtimer(CALLBACK(src, PROC_REF(do_fire), get_turf(holder.my_atom), 5 SECONDS))
addtimer(CALLBACK(src, PROC_REF(do_fire), get_turf(holder.my_atom)), 5 SECONDS)

/datum/chemical_reaction/slime/fire/proc/do_fire(turf/target)
for(var/turf/simulated/floor/target_tile in range(0, target))
Expand Down Expand Up @@ -1053,7 +1053,7 @@

/datum/chemical_reaction/slime/explosion/on_reaction(var/datum/reagents/holder)
..()
addtimer(CALLBACK(src, PROC_REF(do_explode), get_turf(holder.my_atom), 5 SECONDS))
addtimer(CALLBACK(src, PROC_REF(do_explode), get_turf(holder.my_atom)), 5 SECONDS)

/datum/chemical_reaction/slime/explosion/proc/do_explode(turf/target)
explosion(target, 600, 50)
Expand Down

0 comments on commit f7e124b

Please sign in to comment.