diff --git a/code/modules/reagents/newchem/pyro.dm b/code/modules/reagents/newchem/pyro.dm index 5d9f5940f1e..1dc305142b5 100644 --- a/code/modules/reagents/newchem/pyro.dm +++ b/code/modules/reagents/newchem/pyro.dm @@ -69,7 +69,7 @@ if(method == TOUCH && isliving(M)) M.adjust_fire_stacks(5) M.IgniteMob() - new /obj/fire(M.loc) + M.bodytemperature += 30 return /datum/reagent/sorium @@ -144,9 +144,11 @@ if(istype(X, /atom/movable)) if((X) && !X.anchored) if(setting_type) + playsound(T, 'sound/effects/bang.ogg', 25, 1) for(var/i = 0, i < pull_times, i++) step_away(X,T) else + playsound(T, 'sound/effects/whoosh.ogg', 25, 1) //credit to Robinhood76 of Freesound.org for this. for(var/i = 0, i < pull_times, i++) step_towards(X,T) diff --git a/sound/effects/whoosh.ogg b/sound/effects/whoosh.ogg new file mode 100644 index 00000000000..12e7b0c8a60 Binary files /dev/null and b/sound/effects/whoosh.ogg differ