From 48e65b66ee177f1ddd9ecc184851e7a83df89edb Mon Sep 17 00:00:00 2001 From: Git-Nivrak <59925169+Git-Nivrak@users.noreply.github.com> Date: Mon, 20 May 2024 00:11:46 +0300 Subject: [PATCH] Makes the Queen's point purple (#6302) # About the pull request Makes the Queen's point purple # 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 Screenshots & Videos 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: --- code/modules/mob/living/carbon/xenomorph/castes/Queen.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm b/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm index f5207e6abf30..8c3fad8d0af9 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm @@ -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("[src] points to [target_atom]", null, null, 5)