Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ihatethisengine committed Dec 23, 2023
1 parent 5623f3c commit a730d2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/cm_aliens/structures/special/pylon_core.dm
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,12 @@
if(real_total_xeno_count > (groundside_humans_weighted_count * ENDGAME_LARVA_CAP_MULTIPLIER))
if(!linked_hive.hit_larva_pylon_limit)
linked_hive.hit_larva_pylon_limit = TRUE
xeno_announcement(SPAN_XENOANNOUNCE("Our numbers are huge! We will not get more unless we lose numbers or talls get more."), hivenumber, XENO_GENERAL_ANNOUNCE)
xeno_announcement(SPAN_XENOANNOUNCE("Our numbers are huge! We will not get more unless we lose numbers or talls get more."), linked_hive.hivenumber, XENO_GENERAL_ANNOUNCE)
return

if(linked_hive.hit_larva_pylon_limit)
linked_hive.hit_larva_pylon_limit = FALSE
xeno_announcement(SPAN_XENOANNOUNCE("We need numbers! Pylons will provide larvae again."), hivenumber, XENO_GENERAL_ANNOUNCE)
xeno_announcement(SPAN_XENOANNOUNCE("We need numbers! Pylons will provide larvae again."), linked_hive.hivenumber, XENO_GENERAL_ANNOUNCE)
linked_hive.partial_larva += real_total_xeno_count * LARVA_ADDITION_MULTIPLIER
linked_hive.convert_partial_larva_to_full_larva()
linked_hive.hive_ui.update_burrowed_larva()
Expand Down

0 comments on commit a730d2b

Please sign in to comment.