Skip to content

Commit

Permalink
Fixes getting a prayer confirmation per affected admin, instead of ju…
Browse files Browse the repository at this point in the history
…st once (#6382)

# About the pull request

<!-- Remove this text and explain what the purpose of your PR is.

Mention if you have tested your changes. If you changed a map, make sure
you used the mapmerge tool.
If this is an Issue Correction, you can type "Fixes Issue #169420" to
link the PR to the corresponding Issue number #169420.

Remember: something that is self-evident to you might not be to others.
Explain your rationale fully, even if you feel it goes without saying.
-->

moves the thing outside the loop

# Explain why it's good for the game
# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog
:cl:
fix: Your prayers have been received by the gods will now only be said
once per prayer
/:cl:
  • Loading branch information
TheGamerdk committed Jun 7, 2024
1 parent 91f3c5a commit 8e5d31a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/admin/verbs/pray.dm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
to_chat(admin, SPAN_STAFF_IC(msg))
if(admin.prefs.toggles_sound & SOUND_ARES_MESSAGE)
admin << 'sound/machines/terminal_alert.ogg'
to_chat(usr, receipt)

to_chat(usr, receipt)

/proc/high_command_announce(text , mob/Sender , iamessage)
var/msg = copytext(sanitize(text), 1, MAX_MESSAGE_LEN)
Expand Down

0 comments on commit 8e5d31a

Please sign in to comment.