From 0446dbd85860760fe0a113a037bd597b9ca2d2eb Mon Sep 17 00:00:00 2001 From: Johnny Date: Thu, 15 Oct 2020 01:22:55 +0000 Subject: [PATCH] Renames authentication throttle back to login throttle. --- evennia/accounts/accounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/accounts/accounts.py b/evennia/accounts/accounts.py index 3861a118b4..f6bc0cb7d4 100644 --- a/evennia/accounts/accounts.py +++ b/evennia/accounts/accounts.py @@ -55,7 +55,7 @@ CREATION_THROTTLE = Throttle( name='creation', limit=settings.CREATION_THROTTLE_LIMIT, timeout=settings.CREATION_THROTTLE_TIMEOUT ) LOGIN_THROTTLE = Throttle( - name='authentication', limit=settings.LOGIN_THROTTLE_LIMIT, timeout=settings.LOGIN_THROTTLE_TIMEOUT + name='login', limit=settings.LOGIN_THROTTLE_LIMIT, timeout=settings.LOGIN_THROTTLE_TIMEOUT )