Skip to content

Commit

Permalink
Fixes staff access to Fax Responder (#7637)
Browse files Browse the repository at this point in the history
# About the pull request

As title

# Explain why it's good for the game

Staff can already do it manually. Just an oversight.


# 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: Staff can properly access Fax Responder WL.
/:cl:
  • Loading branch information
realforest2001 authored Nov 21, 2024
1 parent 0587ce5 commit bc27d6a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/modules/client/client_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,9 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list(
if((flag_to_check & WHITELIST_JOE) && CLIENT_IS_STAFF(src))
return TRUE

if((flag_to_check & WHITELIST_FAX_RESPONDER) && CLIENT_IS_STAFF(src))
return TRUE

if(!player_data)
load_player_data()
if(!player_data)
Expand Down

0 comments on commit bc27d6a

Please sign in to comment.