From 3c80ecc3678d117160529f34c27b5cc14dc13520 Mon Sep 17 00:00:00 2001 From: Loudrob Date: Thu, 18 Jun 2015 15:24:21 -0400 Subject: [PATCH] =?UTF-8?q?=E5=8D=90=20House=20Door=20Flickering=20Fix=20?= =?UTF-8?q?=E5=8D=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- toontown/estate/DistributedHouseDoor.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/toontown/estate/DistributedHouseDoor.py b/toontown/estate/DistributedHouseDoor.py index 48e3d69c..00baf55f 100755 --- a/toontown/estate/DistributedHouseDoor.py +++ b/toontown/estate/DistributedHouseDoor.py @@ -31,7 +31,11 @@ class DistributedHouseDoor(DistributedDoor.DistributedDoor): return 'door_trigger_' + str(self.houseId) def hideDoorParts(self): - pass + try: + self.findDoorNode('doorFrameHoleRight').hide() + self.findDoorNode('doorFrameHoleLeft').hide() + except: + pass def announceGenerate(self): DistributedObject.DistributedObject.announceGenerate(self)