Digital Camouflage now makes you fully invisible to the AI (#21184)

* you are now invis hacking woooo

* Update code/modules/antagonists/changeling/powers/digitalcamo.dm

Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>

---------

Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
This commit is contained in:
GDN
2023-06-14 21:43:28 +01:00
committed by GitHub
co-authored by S34N
parent 989912d761
commit ee211e3f11
3 changed files with 6 additions and 2 deletions
@@ -14,10 +14,11 @@
/datum/action/changeling/digitalcamo/sting_action(mob/user)
if(HAS_TRAIT_FROM(user, TRAIT_AI_UNTRACKABLE, CHANGELING_TRAIT))
REMOVE_TRAIT(user, TRAIT_AI_UNTRACKABLE, CHANGELING_TRAIT)
user.invisibility = initial(user.invisibility)
to_chat(user, "<span class='notice'>We return to normal.</span>")
else
ADD_TRAIT(user, TRAIT_AI_UNTRACKABLE, CHANGELING_TRAIT)
to_chat(user, "<span class='notice'>We distort our form to prevent AI-tracking.</span>")
user.invisibility = SEE_INVISIBLE_LIVING
SSblackbox.record_feedback("nested tally", "changeling_powers", 1, list("[name]"))
return TRUE