Guest Functionality
Allows for guest logins by entering 'connect guest' at the login screen. Cleans up after itself but does not yet clean up stale guests from a system crash.
This commit is contained in:
parent
16b1aeffc2
commit
b9661c5c96
5 changed files with 182 additions and 75 deletions
|
|
@ -422,7 +422,7 @@ class CmdCemit(MuxPlayerCommand):
|
|||
|
||||
key = "@cemit"
|
||||
aliases = ["@cmsg"]
|
||||
locks = "cmd: not pperm(channel_banned)"
|
||||
locks = "cmd: not pperm(channel_banned) and pperm(Players)"
|
||||
help_category = "Comms"
|
||||
|
||||
def func(self):
|
||||
|
|
@ -498,7 +498,7 @@ class CmdChannelCreate(MuxPlayerCommand):
|
|||
|
||||
key = "@ccreate"
|
||||
aliases = "channelcreate"
|
||||
locks = "cmd:not pperm(channel_banned)"
|
||||
locks = "cmd:not pperm(channel_banned) and pperm(Players)"
|
||||
help_category = "Comms"
|
||||
|
||||
def func(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue