fix missing ! when testing for permission on editing config

This commit is contained in:
Isaac Connor 2019-01-04 09:37:26 -05:00
parent 5b9bf48945
commit 7ec96655c3
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
//
// System edit actions
if ( canEdit('System') ) {
if ( !canEdit('System') ) {
Warning("Must have System permissions to perform options actions");
return;
}