From 1910e1054d80d1784f55a47b45c6a575f8554d3c Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Wed, 8 Jan 2014 11:13:36 +1030 Subject: [PATCH] Indentation fix. --- code/modules/reagents/Chemistry-Reagents.dm | 28 ++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index d5f3ab40a47..cf3dc193dfe 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -697,13 +697,13 @@ datum custom_metabolism = 0.01 - on_mob_life(var/mob/living/M as mob, var/alien) - if(M.stat == 2) return - if(alien && alien == IS_VOX) - M.adjustToxLoss(REAGENTS_METABOLISM) - holder.remove_reagent(src.id, REAGENTS_METABOLISM) //By default it slowly disappears. - return - ..() + on_mob_life(var/mob/living/M as mob, var/alien) + if(M.stat == 2) return + if(alien && alien == IS_VOX) + M.adjustToxLoss(REAGENTS_METABOLISM) + holder.remove_reagent(src.id, REAGENTS_METABOLISM) //By default it slowly disappears. + return + ..() copper name = "Copper" @@ -724,13 +724,13 @@ datum mildly_toxic = 1 custom_metabolism = 0.01 - on_mob_life(var/mob/living/M as mob, var/alien) - if(M.stat == 2) return - if(alien && alien == IS_VOX) - M.adjustOxyLoss(-2*REM) - holder.remove_reagent(src.id, REAGENTS_METABOLISM) //By default it slowly disappears. - return - ..() + on_mob_life(var/mob/living/M as mob, var/alien) + if(M.stat == 2) return + if(alien && alien == IS_VOX) + M.adjustOxyLoss(-2*REM) + holder.remove_reagent(src.id, REAGENTS_METABOLISM) //By default it slowly disappears. + return + ..() hydrogen name = "Hydrogen"