Return latestIssueStr from DistributedInGameNewsMgr.getLatestIssueStr

The method body was a bare pass, so it returned None instead of the stored string.

Fixes #132
This commit is contained in:
Nicolas Sanchez 2026-05-19 01:28:49 -05:00
parent a5ecbb8b1e
commit 314b17cef1
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class DistributedInGameNewsMgr(DistributedObject):
self.notify.info('latestIssue=%s' % self.latestIssue)
def getLatestIssueStr(self):
pass
return self.latestIssueStr
def getLatestIssue(self):
return self.latestIssue