make play key perms make sense

adjust GM level 1 name and some related displays
This commit is contained in:
aronwk-aaron
2022-11-28 18:48:28 -06:00
parent 4aff169967
commit 19f38b379e
4 changed files with 10 additions and 10 deletions

View File

@@ -31,7 +31,7 @@ def index():
@login_required
def about():
"""About Page"""
mods = Account.query.filter(Account.gm_level > 0).order_by(Account.gm_level.desc()).all()
mods = Account.query.filter(Account.gm_level > 1).order_by(Account.gm_level.desc()).all()
online = 0
users = []
zones = {}