X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Fmisc.py;h=eea2f008c3353d7806f69527d0c8df344f71d14c;hp=b83215c535fb8075c060ae67f7d91cfd602bc9a3;hb=79167e5538f59e665f9550a7b4bcb9295bf6186b;hpb=9e752a06cae971045047583823f3ca9a667c0d44 diff --git a/mudpy/misc.py b/mudpy/misc.py index b83215c..eea2f00 100644 --- a/mudpy/misc.py +++ b/mudpy/misc.py @@ -637,14 +637,13 @@ class User: """Flag the user as authenticated and disconnect duplicates.""" if self.state != "authenticated": self.authenticated = True + log("User %s authenticated for account %s." % ( + self, self.account.subkey), 2) if ("mudpy.limit" in universe.contents and self.account.subkey in universe.contents["mudpy.limit"].get("admins")): self.account.set("administrator", True) - log("Administrator %s authenticated." % - self.account.get("name"), 2) - else: - log("User %s authenticated for account %s." % ( - self, self.account.subkey), 2) + log("Account %s is an administrator." % ( + self.account.subkey), 2) def show_menu(self): """Send the user their current menu."""