diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 16bd3f8ff9c..4c7016e3d91 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -212,11 +212,11 @@ var/list/admin_verbs_mod = list( /client/proc/cmd_admin_pm_context, /*right-click adminPM interface*/ /client/proc/cmd_admin_pm_panel, /*admin-pm list*/ /client/proc/debug_variables, /*allows us to -see- the variables of any instance in the game.*/ - /client/proc/playernotes, + /datum/admins/proc/PlayerNotes, /client/proc/admin_ghost, /*allows us to ghost/reenter body at will*/ - /client/proc/mod_panel, /client/proc/cmd_mod_say, - /datum/admins/proc/show_player_info + /datum/admins/proc/show_player_info, + /client/proc/player_panel_new, ) /client/proc/add_admin_verbs() if(holder) @@ -618,7 +618,7 @@ var/list/admin_verbs_mod = list( /client/proc/mod_panel() set name = "Moderator Panel" set category = "Admin" - /*if(holder) +/* if(holder) holder.mod_panel()*/ // feedback_add_details("admin_verb","MP") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! return @@ -738,4 +738,4 @@ var/list/admin_verbs_mod = list( var/job = input("Please select job slot to free", "Free job slot") as null|anything in jobs if (job) job_master.FreeRole(job) - return + return diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 25df4bbc945..a9df874c595 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1460,7 +1460,7 @@ usr.client.cmd_admin_subtle_message(M) else if(href_list["traitor"]) - if(!check_rights(R_ADMIN)) return + if(!check_rights(R_ADMIN|R_MOD)) return if(!ticker || !ticker.mode) alert("The game hasn't started yet!") @@ -2512,4 +2512,4 @@ switch(href_list["notes"]) if("show") show_player_info(ckey) - return + return diff --git a/code/world.dm b/code/world.dm index 85564a540f0..5c572892e22 100644 --- a/code/world.dm +++ b/code/world.dm @@ -28,6 +28,7 @@ load_mode() load_motd() load_admins() + load_mods() LoadBansjob() if(config.usewhitelist) load_whitelist()