Skip to content

Commit

Permalink
Changes OOC color settings so donators aren't defaulted to mentor col…
Browse files Browse the repository at this point in the history
…ors (#6615)

# About the pull request

As title

# Explain why it's good for the game

Indifferent


# 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:
code: Changes OOC color settings for donators/non mentor/staff.
/:cl:
  • Loading branch information
realforest2001 authored Jul 6, 2024
1 parent 206637a commit 84ddeed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/verbs/ooc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
if(!display_colour)
display_colour = CONFIG_GET(string/ooc_color_normal)
if(admin_holder && !admin_holder.fakekey)
display_colour = CONFIG_GET(string/ooc_color_other)
if(admin_holder.rights & R_MENTOR)
display_colour = CONFIG_GET(string/ooc_color_other)
if(admin_holder.rights & R_DEBUG)
display_colour = CONFIG_GET(string/ooc_color_debug)
if(admin_holder.rights & R_MOD)
Expand Down

0 comments on commit 84ddeed

Please sign in to comment.