mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 22:36:31 +01:00
- Tiny fix to the failed login call.
This commit is contained in:
parent
e0e382e0c6
commit
c1f35a4e10
1 changed files with 3 additions and 2 deletions
|
|
@ -166,8 +166,9 @@ class CmdUnconnectedConnect(MuxCommand):
|
|||
session.msg(string)
|
||||
# this just updates the throttle
|
||||
_throttle(session, storage=_LATEST_FAILED_LOGINS)
|
||||
# calls player hook for a failed login.
|
||||
player.at_failed_login(session)
|
||||
# calls player hook for a failed login if possible.
|
||||
if player:
|
||||
player.at_failed_login(session)
|
||||
return
|
||||
|
||||
# Check IP and/or name bans
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue