diff --git a/toontown/ai/DistributedReportMgrAI.py b/toontown/ai/DistributedReportMgrAI.py index 90f5998d..45bc9d6c 100644 --- a/toontown/ai/DistributedReportMgrAI.py +++ b/toontown/ai/DistributedReportMgrAI.py @@ -29,7 +29,7 @@ class DistributedReportMgrAI(DistributedObjectAI): self.reports.append('%s|%s|%s|%s' % (timestamp, reporterId, avId, category)) def sendAllReports(self): - if not self.reports: + if not self.reports or config.GetString('accountdb-type', 'developer') != 'remote':: return executeHttpRequestAndLog('report', reports=','.join(self.reports)) diff --git a/toontown/friends/TrueFriendsMgrAI.py b/toontown/friends/TrueFriendsMgrAI.py index 5ea8da6f..a2c30a49 100644 --- a/toontown/friends/TrueFriendsMgrAI.py +++ b/toontown/friends/TrueFriendsMgrAI.py @@ -15,7 +15,7 @@ class TrueFriendsMgrAI(DistributedObjectAI): if not av: return - if simbase.config.GetString('accountdb-type', 'developer') != 'remote': + if config.GetString('accountdb-type', 'developer') != 'remote': self.sendUpdateToAvatarId(avId, 'requestIdResult', [0, None, None]) return