Update admin.dm

This commit is contained in:
Verkister
2022-03-25 18:00:58 +02:00
committed by GitHub
parent 876d256c06
commit 29f85b17d5

View File

@@ -814,7 +814,7 @@ var/global/floorIsLava = 0
to_world("<B>The OOC channel has been globally enabled!</B>")
else
to_world("<B>The OOC channel has been globally disabled!</B>")
log_and_message_admins("toggled OOC.")
log_and_message_admins("toggled OOC.", usr)
feedback_add_details("admin_verb","TOOC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/datum/admins/proc/togglelooc()
@@ -830,7 +830,7 @@ var/global/floorIsLava = 0
to_world("<B>The LOOC channel has been globally enabled!</B>")
else
to_world("<B>The LOOC channel has been globally disabled!</B>")
log_and_message_admins("toggled LOOC.")
log_and_message_admins("toggled LOOC.", usr)
feedback_add_details("admin_verb","TLOOC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
@@ -907,7 +907,7 @@ var/global/floorIsLava = 0
else
SSticker.start_immediately = FALSE
to_world("<span class='notice'>Immediate game start canceled. Normal startup resumed.</span>")
log_and_message_admins("cancelled immediate game start.")
log_and_message_admins("cancelled immediate game start.", usr)
/datum/admins/proc/toggleenter()
set category = "Server"
@@ -1197,7 +1197,7 @@ var/global/floorIsLava = 0
else
new chosen(usr.loc)
log_and_message_admins("spawned [chosen] at ([usr.x],[usr.y],[usr.z])")
log_and_message_admins("spawned [chosen] at ([usr.x],[usr.y],[usr.z])", usr)
feedback_add_details("admin_verb","SA") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
@@ -1492,7 +1492,7 @@ var/global/floorIsLava = 0
to_chat(usr, "Mode has not started.")
return
log_and_message_admins("attempting to force mode autospawn.")
log_and_message_admins("attempting to force mode autospawn.", usr)
ticker.mode.try_latespawn()
/datum/admins/proc/paralyze_mob(mob/living/H as mob)
@@ -1506,12 +1506,12 @@ var/global/floorIsLava = 0
if (H.paralysis == 0)
H.SetParalysis(8000)
msg = "has paralyzed [key_name(H)]."
log_and_message_admins(msg)
log_and_message_admins(msg, usr)
else
if(alert(src, "[key_name(H)] is paralyzed, would you like to unparalyze them?",,"Yes","No") == "Yes")
H.SetParalysis(0)
msg = "has unparalyzed [key_name(H)]."
log_and_message_admins(msg)
log_and_message_admins(msg, usr)
/datum/admins/proc/set_tcrystals(mob/living/carbon/human/H as mob)
set category = "Debug"