Update wl/bl -> only/not

This commit is contained in:
Tim Van Baak 2019-06-19 14:47:39 -07:00
parent 3afc8ea602
commit 0906fe9b06
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ def datetimeformat(value, formatstr="%Y-%m-%d %H:%M:%S"):
def root():
dungeon = dungeonlib.Dungeon("dungeon")
filter_lambda = list_filter(
whitelist=request.args.get('wl'),
blacklist=request.args.get('bl'))
whitelist=request.args.get('only'),
blacklist=request.args.get('not'))
active_items = []
for cell_name in dungeon:
cell = dungeon[cell_name]