Files
Bubberstation/code/modules/admin/smites/immerse.dm
SkyratBot 50530a1ead [MIRROR] Fully Immersing someone now reminds them to roleplay correctly (#8375)
* Fully Immersing someone now reminds them to roleplay correctly (#61657)

Please roleplay correctly!

* Fully Immersing someone now reminds them to roleplay correctly

Co-authored-by: tralezab <40974010+tralezab@users.noreply.github.com>
2021-09-24 23:09:55 +01:00

10 lines
341 B
Plaintext

/// "Fully immerses" the player, making them manually breathe and blink
/datum/smite/immerse
name = "Fully Immerse"
/datum/smite/immerse/effect(client/user, mob/living/target)
. = ..()
immerse_player(target)
SEND_SOUND(target, sound('sound/voice/roleplay.ogg'))
to_chat(target, span_boldnotice("Please roleplay appropriately, okay?"))