Skip to content

Commit

Permalink
hatchery sprites fixes
Browse files Browse the repository at this point in the history
thanks wei
  • Loading branch information
Git-Nivrak committed May 26, 2024
1 parent 548f849 commit 383d4fa
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/cm_aliens/XenoStructures.dm
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@

/obj/effect/alien/resin/destroyer_cocoon/proc/start_growing()
icon_state = "growing"
timer = addtimer(CALLBACK(src, PROC_REF(choose_candidate)), 9 MINUTES SECONDS, TIMER_UNIQUE|TIMER_STOPPABLE|TIMER_DELETE_ME)
timer = addtimer(CALLBACK(src, PROC_REF(choose_candidate)), 9 MINUTES, TIMER_UNIQUE|TIMER_STOPPABLE|TIMER_DELETE_ME)

/obj/effect/alien/resin/destroyer_cocoon/proc/roll_candidates()
// First, Let the Queen choose
Expand Down
2 changes: 1 addition & 1 deletion code/modules/cm_aliens/structures/special/pylon_core.dm
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
/// APPLYING HIVE BUFFS ///

/obj/effect/alien/resin/special/pylon/endgame/attack_alien(mob/living/carbon/xenomorph/xeno)
if(!damaged && health == maxhealth && xeno.a_intent == INTENT_HELP && xeno.hivenumber == linked_hive.hivenumber && IS_XENO_LEADER(xeno))
if(!damaged && health == maxhealth && xeno.a_intent == INTENT_HELP && xeno.hivenumber == linked_hive.hivenumber && (IS_XENO_LEADER(xeno)|| isqueen(xeno)))
if(!LAZYISIN(players_on_buff_cooldown, xeno))
choose_hivebuff(xeno)
return
Expand Down
Binary file added icons/obj/structures/alien/hatcheryfix.dmi
Binary file not shown.
Binary file modified icons/obj/structures/alien/xenoDestroyerHatchery.dmi
Binary file not shown.

0 comments on commit 383d4fa

Please sign in to comment.