From 1004235a289d04cad009dcb58701d12d57ff4aa4 Mon Sep 17 00:00:00 2001 From: Perakp Date: Fri, 14 Feb 2014 21:47:41 +0200 Subject: [PATCH] Added feedback when you give spells to mindless mobs. --- code/modules/admin/admin_verbs.dm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index affe7dc73ca..7e55e83a7cd 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -468,13 +468,16 @@ var/list/admin_verbs_hideable = list( var/obj/effect/proc_holder/spell/S = input("Choose the spell to give to that guy", "ABRAKADABRA") as null|anything in spells if(!S) return + feedback_add_details("admin_verb","GS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + log_admin("[key_name(usr)] gave [key_name(T)] the spell [S].") + message_admins("\blue [key_name_admin(usr)] gave [key_name(T)] the spell [S].", 1) + if(T.mind) T.mind.spell_list += new S else T.mob_spell_list += new S - feedback_add_details("admin_verb","GS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! - log_admin("[key_name(usr)] gave [key_name(T)] the spell [S].") - message_admins("\blue [key_name_admin(usr)] gave [key_name(T)] the spell [S].", 1) + message_admins("\red Spells given to mindless mobs will not be transferred in mindswap or cloning!", 1) + /client/proc/give_disease(mob/T as mob in mob_list) // -- Giacom set category = "Fun"