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 )