From bfa73cad7deb45ef71a3ff21c54efc57710e250b Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Thu, 3 Sep 2015 15:39:38 -0400 Subject: [PATCH] ah yes, chemistry code --- code/modules/reagents/Chemistry-Reagents/Blob-Reagents.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Blob-Reagents.dm b/code/modules/reagents/Chemistry-Reagents/Blob-Reagents.dm index cd12093339a..05e2218aa31 100644 --- a/code/modules/reagents/Chemistry-Reagents/Blob-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents/Blob-Reagents.dm @@ -95,13 +95,13 @@ reac_volume = ..() M.apply_damage(0.6*reac_volume, BRUTE) -/datum/reagent/blob/sorium //does brute damage and throws or pushes nearby objects away from the target +/datum/reagent/blob/b_sorium //does brute damage and throws or pushes nearby objects away from the target name = "Sorium" - id = "sorium" + id = "b_sorium" color = "#808000" message = "The blob slams into you, and sends you flying" -/datum/reagent/blob/sorium/reaction_mob(mob/living/M, method=TOUCH, reac_volume) +/datum/reagent/blob/b_sorium/reaction_mob(mob/living/M, method=TOUCH, reac_volume) reagent_vortex(M, 1, reac_volume) reac_volume = ..() M.apply_damage(0.6*reac_volume, BRUTE)