From 37d46e87e6d9746e82f059a810a36cd8df985204 Mon Sep 17 00:00:00 2001 From: ktccd Date: Sat, 1 Apr 2017 03:28:01 +0200 Subject: [PATCH] Fixed verb problem Now the syndi_borer shouldn't be able to use verbs to reproduce (Previous PR only removed the action button on the HUD). --- code/game/gamemodes/miniantags/borer/borer.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/gamemodes/miniantags/borer/borer.dm b/code/game/gamemodes/miniantags/borer/borer.dm index a44160619f..26ec704c7a 100644 --- a/code/game/gamemodes/miniantags/borer/borer.dm +++ b/code/game/gamemodes/miniantags/borer/borer.dm @@ -701,7 +701,8 @@ var/total_borer_hosts_needed = 10 controlling = TRUE victim.verbs += /mob/living/carbon/proc/release_control - victim.verbs += /mob/living/carbon/proc/spawn_larvae + if(is_team_borer) + victim.verbs += /mob/living/carbon/proc/spawn_larvae victim.verbs -= /mob/living/proc/borer_comm victim.verbs += /mob/living/proc/trapped_mind_comm GrantControlActions() @@ -826,7 +827,8 @@ var/total_borer_hosts_needed = 10 controlling = FALSE victim.verbs -= /mob/living/carbon/proc/release_control - victim.verbs -= /mob/living/carbon/proc/spawn_larvae + if(is_team_borer) + victim.verbs -= /mob/living/carbon/proc/spawn_larvae victim.verbs += /mob/living/proc/borer_comm victim.verbs -= /mob/living/proc/trapped_mind_comm RemoveControlActions()