Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] Fixes eye pulling message from cranial fissure. #1597

Merged
merged 2 commits into from
Feb 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion code/datums/wounds/cranial_fissure.dm
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,12 @@
victim.balloon_alert(user, "no eyes to take!")
return TRUE

playsound(victim, 'sound/surgery/organ2.ogg', 50, TRUE)
victim.balloon_alert(user, "pulling out eyes...")
user.visible_message(
span_boldwarning("[user] reaches inside [victim]'s skull..."),
ignored_mobs = user
)
victim.show_message(
span_userdanger("[victim] starts to pull out your eyes!"),
MSG_VISUAL,
Expand All @@ -101,9 +106,10 @@

log_combat(user, victim, "pulled out the eyes of")

playsound(victim, 'sound/surgery/organ1.ogg', 75, TRUE)
user.visible_message(
span_boldwarning("You rip out [victim]'s eyes!"),
span_boldwarning("[user] rips out [victim]'s eyes!"),
span_boldwarning("You rip out [victim]'s eyes!"),
ignored_mobs = victim,
)

Expand Down
Loading