diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-07-03 14:43:29 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-07-03 14:43:29 -0700 |
| commit | 28317edd96314721ca03344e72811d6b26dfbc64 (patch) | |
| tree | 7624a000a23e0190bbb2db12c9d5f8efdff7c1b1 /hotline/access.go | |
| parent | a87437e2c3abc10d7a51bf046197fa739cae1e23 (diff) | |
Fix accessSendPrivMsg permission
Diffstat (limited to 'hotline/access.go')
| -rw-r--r-- | hotline/access.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/access.go b/hotline/access.go index 83a4e16..9b924c3 100644 --- a/hotline/access.go +++ b/hotline/access.go @@ -20,7 +20,6 @@ const ( accessOpenUser = 16 // User Maintenance: Can Read Accounts accessModifyUser = 17 // User Maintenance: Can Modify Accounts accessChangeOwnPass = 18 // Present in the Hotline 1.9 protocol documentation, but seemingly unused - accessSendPrivMsg = 19 // Messaging: Can Send Messages accessNewsReadArt = 20 // News: Can Read Articles accessNewsPostArt = 21 // News: Can Post Articles accessDisconUser = 22 // User Maintenance: Can Disconnect Users (Note: Turns username red in user list) @@ -39,6 +38,7 @@ const ( accessNewsDeleteCat = 35 // News: Can Delete Categories accessNewsCreateFldr = 36 // News: Can Create News Bundles accessNewsDeleteFldr = 37 // News: Can Delete News Bundles + accessSendPrivMsg = 40 // Messaging: Can Send Messages ) type accessBitmap [8]byte |