From 03080424738f3eeb261fa91886a89801accc903c Mon Sep 17 00:00:00 2001 From: ktccd Date: Sat, 1 Apr 2017 02:49:59 +0200 Subject: [PATCH] More borer work Couple of changes. Hopefully the objective is clearly defined now, and it is separate from the team borers you normally have. --- code/game/gamemodes/antag_spawner.dm | 2 ++ code/game/gamemodes/miniantags/borer/syndi_borer.dm | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/antag_spawner.dm b/code/game/gamemodes/antag_spawner.dm index 94ab50557c..2b3fc33bd9 100644 --- a/code/game/gamemodes/antag_spawner.dm +++ b/code/game/gamemodes/antag_spawner.dm @@ -298,6 +298,7 @@ obj/item/weapon/antag_spawner/syndi_borer name = "syndicate brain-slug container" desc = "Releases a modified cortical borer to assist the user." + icon = 'icons/obj/device.dmi' //Temporary? Doesn't really look like a container for xenofauna... but IDK what else could work. icon_state = "locator" obj/item/weapon/antag_spawner/syndi_borer/spawn_antag(client/C, turf/T, mob/owner) @@ -315,6 +316,7 @@ obj/item/weapon/antag_spawner/syndi_borer/spawn_antag(client/C, turf/T, mob/owne new_objective = new /datum/objective/syndi_borer new_objective.owner = B.mind new_objective.target = owner.mind + new_objective.explanation_text = "You are a modified cortical borer. You obey [owner.real_name] and must assist them in completing their objectives." B.mind.objectives += new_objective to_chat(B, "You are awake at last! Seek out whoever released you and aid them as best you can!") diff --git a/code/game/gamemodes/miniantags/borer/syndi_borer.dm b/code/game/gamemodes/miniantags/borer/syndi_borer.dm index 0678970814..dc095c084c 100644 --- a/code/game/gamemodes/miniantags/borer/syndi_borer.dm +++ b/code/game/gamemodes/miniantags/borer/syndi_borer.dm @@ -1,5 +1,6 @@ /mob/living/simple_animal/borer/syndi_borer var/mob/owner = null + is_team_borer = FALSE borer_alert = "Serve as a syndicate cortical borer? (Warning, You can no longer be cloned!)" /mob/living/simple_animal/borer/syndi_borer/Initialize(mapload, gen=1) @@ -16,4 +17,4 @@ /mob/living/simple_animal/borer/syndi_borer/RemoveControlActions() talk_to_brain_action.Remove(victim) - give_back_control_action.Remove(victim) + give_back_control_action.Remove(victim) \ No newline at end of file