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"