From cc7a3eded66064ee9eec18cdd1eeab4e6f4b4f5e Mon Sep 17 00:00:00 2001 From: John Cote Date: Thu, 9 Jan 2020 21:01:48 -0500 Subject: [PATCH] coghq: fix vp cage collision --- toontown/suit/DistributedSellbotBoss.py | 1 + 1 file changed, 1 insertion(+) diff --git a/toontown/suit/DistributedSellbotBoss.py b/toontown/suit/DistributedSellbotBoss.py index 5f4a774..2601817 100644 --- a/toontown/suit/DistributedSellbotBoss.py +++ b/toontown/suit/DistributedSellbotBoss.py @@ -220,6 +220,7 @@ class DistributedSellbotBoss(DistributedBossCog.DistributedBossCog, FSM.FSM): self.cagedToon.setPosHpr(0, -2, 0, 180, 0, 0) self.cagedToon.loop('neutral') touch = CollisionPolygon(Point3(-3.0382, 3.0382, -1), Point3(3.0382, 3.0382, -1), Point3(3.0382, -3.0382, -1), Point3(-3.0382, -3.0382, -1)) + touch.setTangible(0) touchNode = CollisionNode('Cage') touchNode.setCollideMask(ToontownGlobals.WallBitmask) touchNode.addSolid(touch)