mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-25 01:22:13 +00:00
Ports SStyping from Nebula. (#16169)
* Ports SStyping from Nebula. * the spook * a * fix * bring the fanfare to its knees * add a speech bubble type pref --------- Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
@@ -594,11 +594,11 @@ var/list/admin_verbs_cciaa = list(
|
||||
set desc = "Toggles ghost-like invisibility (Don't abuse this)"
|
||||
if(holder && mob)
|
||||
if(mob.invisibility == INVISIBILITY_OBSERVER)
|
||||
mob.invisibility = initial(mob.invisibility)
|
||||
mob.set_invisibility(initial(mob.invisibility))
|
||||
to_chat(mob, "<span class='danger'>Invisimin off. Invisibility reset.</span>")
|
||||
mob.alpha = max(mob.alpha + 100, 255)
|
||||
else
|
||||
mob.invisibility = INVISIBILITY_OBSERVER
|
||||
mob.set_invisibility(INVISIBILITY_OBSERVER)
|
||||
to_chat(mob, "<span class='notice'><b>Invisimin on. You are now as invisible as a ghost.</b></span>")
|
||||
mob.alpha = max(mob.alpha - 100, 0)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user