Added some missing permissions (slap, listmaps)

This commit is contained in:
Timo Smit 2016-09-01 15:00:08 +02:00
parent 7babdb893b
commit 0aa330ad1b
2 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,7 @@ auth.PERM_GREETING = "greeting"
auth.PERM_LISTPLAYERS = "listplayers" auth.PERM_LISTPLAYERS = "listplayers"
auth.PERM_LISTTEAMS = "listteams" auth.PERM_LISTTEAMS = "listteams"
auth.PERM_LISTMAPS = "listmaps"
auth.PERM_LISTSPREES = "listsprees" auth.PERM_LISTSPREES = "listsprees"
auth.PERM_LISTRULES = "listrules" auth.PERM_LISTRULES = "listrules"
auth.PERM_LISTWARNS = "listwarns" auth.PERM_LISTWARNS = "listwarns"
@ -50,6 +51,7 @@ auth.PERM_RENAME = "rename"
auth.PERM_FREEZE = "freeze" auth.PERM_FREEZE = "freeze"
auth.PERM_DISORIENT = "disorient" auth.PERM_DISORIENT = "disorient"
auth.PERM_BURN = "burn" auth.PERM_BURN = "burn"
auth.PERM_SLAP = "slap"
auth.PERM_GIB = "gib" auth.PERM_GIB = "gib"
auth.PERM_THROW = "throw" auth.PERM_THROW = "throw"
auth.PERM_GLOW = "glow" auth.PERM_GLOW = "glow"

View File

@ -30,6 +30,7 @@ local flags = {
[auth.PERM_LISTPLAYERS] = "i", [auth.PERM_LISTPLAYERS] = "i",
[auth.PERM_LISTTEAMS] = "l", [auth.PERM_LISTTEAMS] = "l",
[auth.PERM_LISTMAPS] = "C",
[auth.PERM_LISTSPREES] = "I", [auth.PERM_LISTSPREES] = "I",
[auth.PERM_LISTRULES] = "C", [auth.PERM_LISTRULES] = "C",
[auth.PERM_LISTWARNS] = "R", [auth.PERM_LISTWARNS] = "R",
@ -50,6 +51,7 @@ local flags = {
[auth.PERM_FREEZE] = "E", [auth.PERM_FREEZE] = "E",
[auth.PERM_DISORIENT] = "d", [auth.PERM_DISORIENT] = "d",
[auth.PERM_BURN] = "U", [auth.PERM_BURN] = "U",
[auth.PERM_SLAP] = "A",
[auth.PERM_GIB] = "g", [auth.PERM_GIB] = "g",
[auth.PERM_THROW] = "L", [auth.PERM_THROW] = "L",
[auth.PERM_GLOW] = "o", [auth.PERM_GLOW] = "o",