mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 20:17:15 +01:00
@@ -77,7 +77,7 @@
|
||||
/mob/living/simple_mob/animal/borer/Login()
|
||||
. = ..()
|
||||
if(antag && mind)
|
||||
borers.add_antagonist(mind)
|
||||
GLOB.borers.add_antagonist(mind)
|
||||
|
||||
/mob/living/simple_mob/animal/borer/Initialize(mapload)
|
||||
add_language("Cortical Link")
|
||||
@@ -284,7 +284,7 @@
|
||||
return
|
||||
|
||||
if(host.mind)
|
||||
borers.remove_antagonist(host.mind)
|
||||
GLOB.borers.remove_antagonist(host.mind)
|
||||
|
||||
if(!QDELETED(src))
|
||||
forceMove(get_turf(host.loc))
|
||||
|
||||
@@ -132,7 +132,7 @@
|
||||
|
||||
//Update their traitor status.
|
||||
if(host.mind)
|
||||
borers.add_antagonist_mind(host.mind, 1, borers.faction_role_text, borers.faction_welcome)
|
||||
GLOB.borers.add_antagonist_mind(host.mind, 1, GLOB.borers.faction_role_text, GLOB.borers.faction_welcome)
|
||||
|
||||
/* This is likely not desired, and has some major issues with ghost behavior. Disabling for now
|
||||
// No brain organ, so the borer moves in and replaces it permanently.
|
||||
|
||||
@@ -63,14 +63,14 @@
|
||||
/mob/living/simple_mob/mechanical/viscerator/mercenary/IIsAlly(mob/living/L)
|
||||
. = ..()
|
||||
if(!. && isliving(L)) // Not friendly, see if they're a baddie first.
|
||||
if(L.mind && mercs.is_antagonist(L.mind))
|
||||
if(L.mind && GLOB.mercs.is_antagonist(L.mind))
|
||||
return TRUE
|
||||
|
||||
// Similar to above but for raiders.
|
||||
/mob/living/simple_mob/mechanical/viscerator/raider/IIsAlly(mob/living/L)
|
||||
. = ..()
|
||||
if(!. && isliving(L)) // Not friendly, see if they're a baddie first.
|
||||
if(L.mind && raiders.is_antagonist(L.mind))
|
||||
if(L.mind && GLOB.raiders.is_antagonist(L.mind))
|
||||
return TRUE
|
||||
|
||||
// Variant that is neutral, and thus on the station's side. It checks records.
|
||||
|
||||
Reference in New Issue
Block a user