From d1fb26f3d28b9d810aa52d67575bcf32307d58d0 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Wed, 25 Apr 2012 23:42:23 +0100 Subject: [PATCH] TG: Fixed issue 281 . Rockdtben is working on a more comprehensive fix, but this will do for now. Fixed issue 396 . (delicious low hanging fruit) Fixed issue 165 . "Fixed". I removed the effects of the welding fuel reagent, seeing as a proper fix doesn't seem to be forthcoming. Fixed being able to create thousands of stools in a single turf. Revision: r3267 Author: petethegoat --- code/datums/disease.dm | 2 +- code/modules/chemical/Chemistry-Reagents.dm | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/code/datums/disease.dm b/code/datums/disease.dm index f54da940f88..99dd086df79 100644 --- a/code/datums/disease.dm +++ b/code/datums/disease.dm @@ -112,7 +112,7 @@ to null does not delete the object itself. Thank you. if(spread_type != AIRBORNE && spread_type != SPECIAL) check_range = 0 // everything else, like infect-on-contact things, only infect things on top of it - for(var/mob/living/carbon/M in oviewers(check_range, source)) + for(var/mob/living/carbon/M in oview(check_range, source)) //I have no idea why oview works when oviewers doesn't. -Pete M.contract_disease(src) return diff --git a/code/modules/chemical/Chemistry-Reagents.dm b/code/modules/chemical/Chemistry-Reagents.dm index 958cc935c56..5c9936c152a 100644 --- a/code/modules/chemical/Chemistry-Reagents.dm +++ b/code/modules/chemical/Chemistry-Reagents.dm @@ -1044,6 +1044,8 @@ datum reagent_state = LIQUID color = "#660000" // rgb: 102, 0, 0 +//Commenting this out as it's horribly broken. It's a neat effect though, so it might be worth making a new reagent (that is less common) with similar effects. -Pete +/* reaction_obj(var/obj/O, var/volume) src = null var/turf/the_turf = get_turf(O) @@ -1065,6 +1067,7 @@ datum M:adjustToxLoss(1) ..() return +*/ space_cleaner name = "Space cleaner"