mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 02:54:41 +01:00
Makes all playsounds use bools for vary (#26183)
* Makes all playsounds use `TRUE` for vary * Same but for `FALSE`
This commit is contained in:
@@ -763,7 +763,7 @@
|
||||
/datum/reagent/consumable/meatslurry/reaction_turf(turf/T, volume)
|
||||
if(prob(10) && volume >= 5 && !isspaceturf(T))
|
||||
new /obj/effect/decal/cleanable/blood/gibs/cleangibs(T)
|
||||
playsound(T, 'sound/effects/splat.ogg', 50, 1, -3)
|
||||
playsound(T, 'sound/effects/splat.ogg', 50, TRUE, -3)
|
||||
|
||||
/datum/reagent/consumable/mashedpotatoes
|
||||
name = "Mashed potatoes"
|
||||
|
||||
@@ -325,7 +325,7 @@
|
||||
/datum/reagent/medicine/heal_on_apply/synthflesh/reaction_turf(turf/T, volume) //let's make a mess!
|
||||
if(volume >= 5 && !isspaceturf(T))
|
||||
new /obj/effect/decal/cleanable/blood/gibs/cleangibs(T)
|
||||
playsound(T, 'sound/effects/splat.ogg', 50, 1, -3)
|
||||
playsound(T, 'sound/effects/splat.ogg', 50, TRUE, -3)
|
||||
|
||||
/datum/reagent/medicine/heal_on_apply/styptic_powder
|
||||
name = "Styptic Powder"
|
||||
|
||||
@@ -436,7 +436,7 @@
|
||||
continue
|
||||
if(!C.stat)
|
||||
M.visible_message("<span class='notice'>[M] gives [C] a [pick("hug","warm embrace")].</span>")
|
||||
playsound(get_turf(M), 'sound/weapons/thudswoosh.ogg', 50, 1, -1)
|
||||
playsound(get_turf(M), 'sound/weapons/thudswoosh.ogg', 50, TRUE, -1)
|
||||
break
|
||||
return ..()
|
||||
|
||||
|
||||
@@ -426,7 +426,7 @@
|
||||
/datum/reagent/liquidgibs/reaction_turf(turf/T, volume) //yes i took it from synthflesh...
|
||||
if(volume >= 5 && !isspaceturf(T))
|
||||
new /obj/effect/decal/cleanable/blood/gibs/cleangibs(T)
|
||||
playsound(T, 'sound/effects/splat.ogg', 50, 1, -3)
|
||||
playsound(T, 'sound/effects/splat.ogg', 50, TRUE, -3)
|
||||
|
||||
/datum/reagent/lye
|
||||
name = "Lye"
|
||||
|
||||
@@ -267,7 +267,7 @@
|
||||
holder.del_reagent(f_reagent)
|
||||
var/location = get_turf(holder.my_atom)
|
||||
var/datum/effect_system/smoke_spread/chem/S = new
|
||||
playsound(location, 'sound/effects/smoke.ogg', 50, 1, -3)
|
||||
playsound(location, 'sound/effects/smoke.ogg', 50, TRUE, -3)
|
||||
if(S)
|
||||
S.set_up(holder, location)
|
||||
if(created_volume < 5)
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
var/contents_log = reagents.reagent_list.Join(", ")
|
||||
INVOKE_ASYNC(src, PROC_REF(spray), A)
|
||||
|
||||
playsound(loc, 'sound/effects/spray2.ogg', 50, 1, -6)
|
||||
playsound(loc, 'sound/effects/spray2.ogg', 50, TRUE, -6)
|
||||
user.changeNext_move(delay)
|
||||
user.newtonian_move(get_dir(A, user))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user