diff --git a/roulette.py b/roulette.py index dcdcc3e..9a36158 100644 --- a/roulette.py +++ b/roulette.py @@ -146,7 +146,7 @@ def playable_required(f): return render_template('not_subscribed.html',stats=statistiques()) # Un utilisateur banni ne peut pas jouer - elif is_banned(user['id']): + elif is_banned(user['id']) and ('up' in STATE): return banned() return f(*args, **kwargs)