diff --git a/code/modules/antagonists/traitor/IAA/internal_affairs.dm b/code/modules/antagonists/traitor/IAA/internal_affairs.dm index 20c32bfca5b3..f4b7f0ca0fe4 100644 --- a/code/modules/antagonists/traitor/IAA/internal_affairs.dm +++ b/code/modules/antagonists/traitor/IAA/internal_affairs.dm @@ -30,6 +30,15 @@ /datum/antagonist/traitor/internal_affairs/on_gain() START_PROCESSING(SSprocessing, src) + + //Gives Cyanide dental implant + var/obj/item/reagent_containers/pill/cyanide/cyan = new + owner.current.transferItemToLoc(cyan, owner, TRUE) + var/datum/action/item_action/hands_free/activate_pill/P = new(cyan) + P.button.name = "Activate [cyan.name]" + P.target = cyan + P.Grant(owner.current)//The pill never actually goes in an inventory slot, so the owner doesn't inherit actions from it + .=..() /datum/antagonist/traitor/internal_affairs/on_removal() STOP_PROCESSING(SSprocessing,src)