diff --git a/evennia/utils/evmore.py b/evennia/utils/evmore.py index 5954f672d3..5aebc899d9 100644 --- a/evennia/utils/evmore.py +++ b/evennia/utils/evmore.py @@ -79,7 +79,7 @@ class CmdMore(Command): Implement the command """ more = self.caller.ndb._more - if not more and hasattr(self.caller, 'account') and self.caller.has_account: + if not more and hasattr(self.caller, 'account') and self.caller.account: more = self.caller.account.ndb._more if not more: self.caller.msg("Error in loading the pager. Contact an admin.") @@ -113,7 +113,7 @@ class CmdMoreExit(Command): Exit pager and re-fire the failed command. """ more = self.caller.ndb._more - if not more and hasattr(self.caller, 'account') and self.caller.has_account: + if not more and hasattr(self.caller, 'account') and self.caller.account: more = self.caller.account.ndb._more if not more: self.caller.msg("Error in exiting the pager. Contact an admin.")