From 326e5ec8a9ca79ea62c846bd0642f88c7174714e Mon Sep 17 00:00:00 2001 From: Linzolle Date: Wed, 23 Oct 2019 21:54:14 -0500 Subject: [PATCH] when are we gonna port this --- .../antagonists/abductor/equipment/abduction_gear.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/antagonists/abductor/equipment/abduction_gear.dm b/code/modules/antagonists/abductor/equipment/abduction_gear.dm index 1cbd09858b..2f859d0400 100644 --- a/code/modules/antagonists/abductor/equipment/abduction_gear.dm +++ b/code/modules/antagonists/abductor/equipment/abduction_gear.dm @@ -614,16 +614,16 @@ Congratulations! You are now trained for invasive xenobiology research!"} . = ..() /obj/item/abductor/baton/examine(mob/user) - . = ..() + ..() switch(mode) if(BATON_STUN) - . += "The baton is in stun mode." + to_chat(user, "The baton is in stun mode.") if(BATON_SLEEP) - . += "The baton is in sleep inducement mode." + to_chat(user, "The baton is in sleep inducement mode.") if(BATON_CUFF) - . += "The baton is in restraining mode." + to_chat(user, "The baton is in restraining mode.") if(BATON_PROBE) - . += "The baton is in probing mode." + to_chat(user, "The baton is in probing mode.") /obj/item/radio/headset/abductor name = "alien headset"