From f06dbddeca28245544f2918365bd63fa0233f07f Mon Sep 17 00:00:00 2001 From: John Cote Date: Thu, 9 Jan 2020 20:47:09 -0500 Subject: [PATCH] distributed: fix crash --- toontown/distributed/ToontownClientRepository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toontown/distributed/ToontownClientRepository.py b/toontown/distributed/ToontownClientRepository.py index 780f405..aef882c 100644 --- a/toontown/distributed/ToontownClientRepository.py +++ b/toontown/distributed/ToontownClientRepository.py @@ -1185,7 +1185,7 @@ class ToontownClientRepository(OTPClientRepository.OTPClientRepository): elif self.cache.contains(doId): self.cache.delete(doId) else: - ClientRepository.notify.warning('Asked to delete non-existent DistObj ' + str(doId)) + self.notify.warning('Asked to delete non-existent DistObj ' + str(doId)) def _abandonShard(self): for doId, obj in list(self.doId2do.items()):