mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-29 11:02:05 +00:00
* 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>
10 lines
341 B
Plaintext
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?"))
|