From e25d9320bdecd98945e42f011a1e7dfe6a2c3e3f Mon Sep 17 00:00:00 2001 From: VampyrBytes Date: Thu, 18 Feb 2016 07:53:38 +0000 Subject: [PATCH] admin_only not adminOnly --- code/modules/reagents/oldchem/reagents/_reagent_base.dm | 2 +- code/modules/reagents/oldchem/reagents/reagents_admin.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/oldchem/reagents/_reagent_base.dm b/code/modules/reagents/oldchem/reagents/_reagent_base.dm index aeb14301d16..eab338f2882 100644 --- a/code/modules/reagents/oldchem/reagents/_reagent_base.dm +++ b/code/modules/reagents/oldchem/reagents/_reagent_base.dm @@ -16,7 +16,7 @@ //Processing flags, defines the type of mobs the reagent will affect //By default, all reagents will ONLY affect organics, not synthetics. Re-define in the reagent's definition if the reagent is meant to affect synths var/process_flags = ORGANIC - var/adminOnly = 0 + var/admin_only = 0 /datum/reagent/proc/reaction_mob(var/mob/M, var/method=TOUCH, var/volume) //Some reagents transfer on touch, others don't; dependent on if they penetrate the skin or not. if(!istype(M, /mob/living)) return 0 diff --git a/code/modules/reagents/oldchem/reagents/reagents_admin.dm b/code/modules/reagents/oldchem/reagents/reagents_admin.dm index 02912bf237b..a46b9678b40 100644 --- a/code/modules/reagents/oldchem/reagents/reagents_admin.dm +++ b/code/modules/reagents/oldchem/reagents/reagents_admin.dm @@ -5,7 +5,7 @@ reagent_state = LIQUID color = "#C8A5DC" // rgb: 200, 165, 220 process_flags = ORGANIC | SYNTHETIC //Adminbuse knows no bounds! - adminOnly=1 + admin_only=1 /datum/reagent/adminordrazine/on_mob_life(var/mob/living/carbon/M as mob) if(!M) M = holder.my_atom ///This can even heal dead people. @@ -67,7 +67,7 @@ var/datum/reagents/reagents = reagentCheck.reagents var/admin = 0 for(var/datum/reagent/reagent in reagents.reagent_list) - if(reagent.adminOnly) + if(reagent.admin_only) admin = 1 break if(!(admin))