diff --git a/code/modules/reagents/chemistry/reagents/water.dm b/code/modules/reagents/chemistry/reagents/water.dm index 75b9e1b49bf..546026a4c40 100644 --- a/code/modules/reagents/chemistry/reagents/water.dm +++ b/code/modules/reagents/chemistry/reagents/water.dm @@ -29,9 +29,6 @@ var/mob/living/carbon/human/H = M - if(IS_PLANT in H.species.species_traits) - H.nutrition = min(H.nutrition+volume, NUTRITION_LEVEL_WELL_FED+10) - if(H.get_species() != "Grey") //God this is so gross I hate it. return @@ -61,9 +58,6 @@ if(ishuman(M)) var/mob/living/carbon/human/H = M - if(IS_PLANT in H.species.species_traits) - H.nutrition = min(H.nutrition+volume, NUTRITION_LEVEL_WELL_FED+10) - if(H.get_species() != "Grey") return @@ -519,10 +513,4 @@ if(istype(O, /obj/item/clothing/shoes/galoshes)) var/t_loc = get_turf(O) qdel(O) - new /obj/item/clothing/shoes/galoshes/dry(t_loc) - -/datum/reagent/drying_agent/reaction_mob(mob/living/M, method=TOUCH, volume) - if(ishuman(M)) - var/mob/living/carbon/human/H = M - if(IS_PLANT in H.species.species_traits) - H.nutrition -= volume + new /obj/item/clothing/shoes/galoshes/dry(t_loc) \ No newline at end of file