From b39baaa733b24c39a7acff1216c1d5754f51c0b4 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Sun, 3 Jul 2016 15:29:53 -0400 Subject: [PATCH] Changes Mix Sound for Azide and Firefighting+CLF3 --- code/modules/reagents/newchem/pyro.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/reagents/newchem/pyro.dm b/code/modules/reagents/newchem/pyro.dm index 655b8e996eb..27e34b0c009 100644 --- a/code/modules/reagents/newchem/pyro.dm +++ b/code/modules/reagents/newchem/pyro.dm @@ -535,6 +535,7 @@ datum/reagent/pyrosium/on_tick() required_reagents = list("chlorine" = 1, "oxygen" = 1, "nitrogen" = 1, "ammonia" = 1, "sodium" = 1, "silver" = 1) result_amount = 1 mix_message = "The substance violently detonates!" + mix_sound = 'sound/effects/bang.ogg' /datum/chemical_reaction/azide/on_reaction(var/datum/reagents/holder, var/created_volume) var/location = get_turf(holder.my_atom) @@ -603,6 +604,7 @@ datum/reagent/firefighting_foam/reaction_obj(var/obj/O, var/volume) required_reagents = list("firefighting_foam" = 1, "clf3" = 1) result_amount = 1 mix_message = "The substance violently detonates!" + mix_sound = 'sound/effects/bang.ogg' /datum/chemical_reaction/clf3_firefighting/on_reaction(var/datum/reagents/holder, var/created_volume) var/location = get_turf(holder.my_atom)