From 36357b32803dfc482e18196f6b02a0b0b1c525cd Mon Sep 17 00:00:00 2001 From: Thalpy <48600475+ThalpySci@users.noreply.github.com> Date: Mon, 21 Oct 2019 19:54:44 +0100 Subject: [PATCH] Eh this way is probably better. --- code/modules/reagents/reagent_containers.dm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm index 9f5f307607..9ae9d46601 100644 --- a/code/modules/reagents/reagent_containers.dm +++ b/code/modules/reagents/reagent_containers.dm @@ -156,8 +156,16 @@ if(beaker_weakness_bitflag & PH_WEAK) if((reagents.pH < 1.5) || (reagents.pH > 12.5)) START_PROCESSING(SSobj, src) - else if((reagents.pH < -1) || (reagents.pH > 15)) - START_PROCESSING(SSobj, src) + else if((reagents.pH < -3) || (reagents.pH > 17)) + var/list/seen = viewers(5, get_turf(src)) + var/iconhtml = icon2html(src, seen) + for(var/mob/M in seen) + to_chat(M, "[iconhtml] \The [src]'s is damaged by the super pH and begins to deform!") + if(reagents.pH < -3) + reagents.pH = -3 + else + reagents.pH = 17 + container_HP -= 1 /obj/item/reagent_containers/process()