Skip to content

Commit

Permalink
apply suggestions from review
Browse files Browse the repository at this point in the history
  • Loading branch information
VileBeggar committed Aug 1, 2024
1 parent f4499bc commit 7c04547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/xenomorph/castes/Queen.dm
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@
/mob/living/carbon/xenomorph/queen/set_resting(new_resting, silent, instant)
if(ovipositor)
return
. = ..()
return ..()

/mob/living/carbon/xenomorph/queen/get_organ_icon()
return "heart_t3"
Expand Down Expand Up @@ -813,10 +813,10 @@
/mob/living/carbon/xenomorph/queen/proc/mount_ovipositor()
if(ovipositor)
return //sanity check
ovipositor = TRUE
ADD_TRAIT(src, TRAIT_IMMOBILIZED, OVIPOSITOR_TRAIT)
set_body_position(STANDING_UP)
set_resting(FALSE)
ovipositor = TRUE

set_resin_build_order(GLOB.resin_build_order_ovipositor) // This needs to occur before we update the abilities so we can update the choose resin icon
for(var/datum/action/xeno_action/action in actions)
Expand Down

0 comments on commit 7c04547

Please sign in to comment.