diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index d9d9cbd96d..2142c1e714 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -372,7 +372,7 @@ var/list/admin_verbs_event_manager = list( /client/proc/add_admin_verbs() if(holder) - control_freak = CONTROL_FREAK_SKIN | CONTROL_FREAK_MACROS + control_freak = CONTROL_FREAK_ALL | CONTROL_FREAK_SKIN | CONTROL_FREAK_MACROS //CHOMPedit KSC 1/30/20 - This enables Admins to use Macros and change use custom skins. verbs += admin_verbs_default if(holder.rights & R_BUILDMODE) verbs += /client/proc/togglebuildmodeself if(holder.rights & R_ADMIN) verbs += admin_verbs_admin diff --git a/code/modules/client/client defines.dm b/code/modules/client/client defines.dm index f95af88a6a..a31e426a02 100644 --- a/code/modules/client/client defines.dm +++ b/code/modules/client/client defines.dm @@ -56,4 +56,6 @@ preload_rsc = PRELOAD_RSC - var/global/obj/screen/click_catcher/void \ No newline at end of file + var/global/obj/screen/click_catcher/void + + control_freak = CONTROL_FREAK_ALL | CONTROL_FREAK_SKIN | CONTROL_FREAK_MACROS //CHOMPedit KSC 1/30/20 - This enables Admins to use Macros and change use custom skins. add Ksc 1/30/20 - This enables Players to use Macros and change use custom skins.