Revert "12/10/23 - Map swap update" (#15593)

This commit is contained in:
Selis
2023-12-10 23:37:45 +01:00
committed by GitHub
parent e3bd8a2821
commit f00d13da66
115 changed files with 3432 additions and 9945 deletions
+2 -8
View File
@@ -8,10 +8,7 @@ var/global/floorIsLava = 0
for(var/client/C in GLOB.admins)
if((R_ADMIN|R_MOD) & C.holder.rights)
to_chat(C,
type = MESSAGE_TYPE_ADMINLOG,
html = msg,
confidential = TRUE)
to_chat(C,msg)
/proc/msg_admin_attack(var/text) //Toggleable Attack Messages
var/rendered = "<span class='filter_attacklog log_message'><span class='prefix'>ATTACK:</span> <span class=\"message\">[text]</span></span>"
@@ -19,10 +16,7 @@ var/global/floorIsLava = 0
if((R_ADMIN|R_MOD) & C.holder.rights)
if(C.is_preference_enabled(/datum/client_preference/mod/show_attack_logs))
var/msg = rendered
to_chat(C,
type = MESSAGE_TYPE_ATTACKLOG,
html = msg,
confidential = TRUE)
to_chat(C,msg)
/proc/admin_notice(var/message, var/rights)
for(var/mob/M in mob_list)