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).
This commit is contained in:
ktccd
2017-04-01 03:28:01 +02:00
parent 0308042473
commit 37d46e87e6
@@ -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()