diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index cd82e2f4878..2f51b9b979e 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -16,6 +16,7 @@ var/log_pda = 0 // log pda messages var/log_hrefs = 0 // logs all links clicked in-game. Could be used for debugging and tracking down exploits var/sql_enabled = 1 // for sql switching + var/allow_admin_ooccolor = 0 // Allows admins with relevant permissions to have their own ooc colour var/allow_vote_restart = 0 // allow votes to restart var/allow_vote_mode = 0 // allow votes to change mode var/allow_admin_jump = 1 // allows admin jumping @@ -185,6 +186,9 @@ if ("log_hrefs") config.log_hrefs = 1 + if("allow_admin_ooccolor") + config.allow_admin_ooccolor = 1 + if ("allow_vote_restart") config.allow_vote_restart = 1 diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index e755082ff09..a93d4318ff3 100644 --- a/code/game/objects/items/blueprints.dm +++ b/code/game/objects/items/blueprints.dm @@ -64,7 +64,7 @@ move an amendment to the drawing.
"} if (AREA_SPECIAL) text += {" -This place doesn't noted on this blueprints.
+This place doesn't noted on these blueprints.
"} else return diff --git a/code/game/verbs/ooc.dm b/code/game/verbs/ooc.dm index e7d95e70319..e0e38e90087 100644 --- a/code/game/verbs/ooc.dm +++ b/code/game/verbs/ooc.dm @@ -51,7 +51,7 @@ if(holder) if(!holder.fakekey || C.holder) if(holder.rights & R_ADMIN) - C << "OOC: [key][holder.fakekey ? "/([holder.fakekey])" : ""]: " + C << "OOC: [key][holder.fakekey ? "/([holder.fakekey])" : ""]: " else C << "OOC: [key][holder.fakekey ? "/([holder.fakekey])" : ""]: " else diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 12760417995..532bb28d2d3 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -54,6 +54,7 @@ var/list/admin_verbs_admin = list( /client/proc/admin_cancel_shuttle, /*allows us to cancel the emergency shuttle, sending it back to centcomm*/ /client/proc/cmd_admin_direct_narrate, /*send text directly to a player with no padding. Useful for narratives and fluff-text*/ /client/proc/cmd_admin_world_narrate, /*sends text to all players with no padding*/ + /client/proc/cmd_admin_create_centcom_report, /client/proc/check_words /*displays cult-words*/ ) var/list/admin_verbs_ban = list( @@ -79,7 +80,6 @@ var/list/admin_verbs_fun = list( /client/proc/send_space_ninja, /client/proc/cmd_admin_add_freeform_ai_law, /client/proc/cmd_admin_add_random_ai_law, - /client/proc/cmd_admin_create_centcom_report, /client/proc/make_sound, /client/proc/toggle_random_events ) diff --git a/code/modules/mob/new_player/preferences.dm b/code/modules/mob/new_player/preferences.dm index de01b3e38a5..efcdbb77ea1 100644 --- a/code/modules/mob/new_player/preferences.dm +++ b/code/modules/mob/new_player/preferences.dm @@ -180,7 +180,7 @@ datum/preferences dat += "Adminhelp sound: " dat += "[(sound_adminhelp)?"On":"Off"] toggle| __ |