* command (command:move): Minor cosmetic fix for the move command
help text.
* mudpy.py (User.replace_old_connections): Fixed a crash in
connection replacement detection where stale sockets without an
associated account would trigger an exception.
[command:move]
action = command_move(actor, parameters)
description = Move in a specific direction.
-help = You move in a direction by entering:$(eol) move north
+help = You move in a direction by entering:$(eol)$(eol) move north
[command:quit]
action = command_quit(actor)
for old_user in universe.userlist:
# the name is the same but it's not us
- if old_user.account.get("name") == self.account.get("name") and old_user is not self:
+ if hasattr(old_user, "account") and old_user.account.get("name") == self.account.get("name") and old_user is not self:
# make a note of it
log("User " + self.account.get("name") + " reconnected--closing old connection to " + old_user.address + ".", 2)