mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 16:47:13 +01:00
moves all admin requests in admin stuff section (#88396)
## About The Pull Request ~~i have absolutely no idea what all this is called correctly~~ adds `type = MESSAGE_TYPE_PRAYER` to all messages that are a request to admins. Because there is no reason why half of these requests should be of type "info" <details> <summary>Screenshots (before)</summary>   </details> <details> <summary>Screenshots (now)</summary>  </details> ## Why It's Good For The Game All requests can now be moved to a separate tab, without unnecessary information ## Changelog 🆑 admin: moves all admin requests in admin stuff section. Now they have type Prayers /🆑
This commit is contained in:
@@ -58,7 +58,7 @@
|
||||
for(var/client/staff as anything in GLOB.admins)
|
||||
if(staff?.prefs.read_preference(/datum/preference/toggle/comms_notification))
|
||||
SEND_SOUND(staff, sound('sound/misc/server-ready.ogg'))
|
||||
to_chat(GLOB.admins, msg, confidential = TRUE)
|
||||
to_chat(GLOB.admins, msg, type = MESSAGE_TYPE_PRAYER, confidential = TRUE)
|
||||
for(var/obj/machinery/computer/communications/console in GLOB.shuttle_caller_list)
|
||||
console.override_cooldown()
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
for(var/client/staff as anything in GLOB.admins)
|
||||
if(staff?.prefs.read_preference(/datum/preference/toggle/comms_notification))
|
||||
SEND_SOUND(staff, sound('sound/misc/server-ready.ogg'))
|
||||
to_chat(GLOB.admins, msg, confidential = TRUE)
|
||||
to_chat(GLOB.admins, msg, type = MESSAGE_TYPE_PRAYER, confidential = TRUE)
|
||||
for(var/obj/machinery/computer/communications/console in GLOB.shuttle_caller_list)
|
||||
console.override_cooldown()
|
||||
|
||||
@@ -81,6 +81,6 @@
|
||||
msg = span_adminnotice("<b><font color=orange>NUKE CODE REQUEST:</font>[ADMIN_FULLMONTY(sender)] [ADMIN_CENTCOM_REPLY(sender)] [ADMIN_SET_SD_CODE]:</b> [msg]")
|
||||
for(var/client/staff as anything in GLOB.admins)
|
||||
SEND_SOUND(staff, sound('sound/misc/server-ready.ogg'))
|
||||
to_chat(GLOB.admins, msg, confidential = TRUE)
|
||||
to_chat(GLOB.admins, msg, type = MESSAGE_TYPE_PRAYER, confidential = TRUE)
|
||||
for(var/obj/machinery/computer/communications/console in GLOB.shuttle_caller_list)
|
||||
console.override_cooldown()
|
||||
|
||||
Reference in New Issue
Block a user