Skip to content

Commit

Permalink
Makes the Queen's point purple (#6302)
Browse files Browse the repository at this point in the history
# About the pull request
Makes the Queen's point purple
<!-- Remove this text and explain what the purpose of your PR is.

Mention if you have tested your changes. If you changed a map, make sure
you used the mapmerge tool.
If this is an Issue Correction, you can type "Fixes Issue #169420" to
link the PR to the corresponding Issue number #169420.

Remember: something that is self-evident to you might not be to others.
Explain your rationale fully, even if you feel it goes without saying.
-->

# Explain why it's good for the game
Makes it distinguishable from other points, It also looks cool (same
color as Queen Eye point except everyone can see it)
# Testing Photographs and Procedure
<summary>Screenshots & Videos</summary>



https://github.com/cmss13-devs/cmss13/assets/59925169/eba99004-09e6-49d5-a7a7-f68b05067180




# Changelog
:cl:
qol: Changed the Queen's pointing color to purple
/:cl:
  • Loading branch information
Git-Nivrak committed May 19, 2024
1 parent 374e21a commit 48e65b6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions code/modules/mob/living/carbon/xenomorph/castes/Queen.dm
Original file line number Diff line number Diff line change
Expand Up @@ -943,3 +943,11 @@
/mob/living/carbon/xenomorph/queen/alter_ghost(mob/dead/observer/ghost)
ghost.icon = queen_standing_icon
return ..()

/mob/living/carbon/xenomorph/queen/point_to_atom(atom/target_atom, turf/target_turf)
recently_pointed_to = world.time + 1 SECONDS

var/obj/effect/overlay/temp/point/big/greyscale/point = new(target_turf, src, target_atom)
point.color = "#a800a8"

visible_message("<b>[src]</b> points to [target_atom]", null, null, 5)

0 comments on commit 48e65b6

Please sign in to comment.