Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion code/datums/emergency_calls/forsaken_xenos.dm
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,5 @@
new_member.transfer_to(new_xeno, TRUE)

new_xeno.set_hive_and_update(XENO_HIVE_FORSAKEN)
new_xeno.lock_evolve = TRUE

QDEL_NULL(current_mob)
5 changes: 3 additions & 2 deletions code/modules/mob/living/carbon/xenomorph/Evolution.dm
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ GLOBAL_LIST_EMPTY(deevolved_ckeys)
to_chat(src, SPAN_WARNING("Our link to the hive is being suppressed...we should wait a bit."))
return FALSE

if(lock_evolve)
if(lock_evolve || (hive.evolution_locked && !islarva(src)))
if(banished)
to_chat(src, SPAN_WARNING("We are banished and cannot reach the hivemind."))
else
Expand Down Expand Up @@ -381,7 +381,7 @@ GLOBAL_LIST_EMPTY(deevolved_ckeys)
if(length(caste.deevolves_to) < 1)
to_chat(src, SPAN_XENOWARNING("We can't deevolve any further."))
return
if(lock_evolve)
if(lock_evolve || hive.evolution_locked)
if(banished)
to_chat(src, SPAN_WARNING("We are banished and cannot reach the hivemind."))
else
Expand Down Expand Up @@ -459,6 +459,7 @@ GLOBAL_LIST_EMPTY(deevolved_ckeys)

new_xeno.built_structures = built_structures.Copy()
built_structures = null
new_xeno.lock_evolve = lock_evolve

if(mind)
mind.transfer_to(new_xeno)
Expand Down
2 changes: 2 additions & 0 deletions code/modules/mob/living/carbon/xenomorph/hive_status.dm
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
var/dynamic_evolution = TRUE
var/evolution_rate = 3 // Only has use if dynamic_evolution is false
var/evolution_bonus = 0
var/evolution_locked = FALSE

var/allow_no_queen_actions = FALSE
var/allow_no_queen_evo = FALSE
Expand Down Expand Up @@ -1311,6 +1312,7 @@
latejoin_burrowed = FALSE
see_humans_on_tacmap = TRUE
tacmap_requires_queen_ovi = FALSE
evolution_locked = TRUE

need_round_end_check = TRUE

Expand Down