From 2f10b2e573f251ccf48ca12006ff8874b656b4a0 Mon Sep 17 00:00:00 2001 From: Little Cat Date: Fri, 16 Dec 2022 21:07:17 -0400 Subject: [PATCH] otp: fix whisper imports --- otp/uberdog/DistributedChatManager.py | 2 +- toontown/building/DistributedBoardingParty.py | 1 + toontown/safezone/DistributedFindFour.py | 1 + toontown/safezone/DistributedPicnicTable.py | 1 + toontown/toon/LocalToon.py | 1 + 5 files changed, 5 insertions(+), 1 deletion(-) diff --git a/otp/uberdog/DistributedChatManager.py b/otp/uberdog/DistributedChatManager.py index 8f3d279..02053a5 100644 --- a/otp/uberdog/DistributedChatManager.py +++ b/otp/uberdog/DistributedChatManager.py @@ -1,6 +1,6 @@ from direct.distributed.DistributedObject import DistributedObject from direct.distributed.DistributedObjectGlobal import DistributedObjectGlobal -from panda3d.core import * +from panda3d.otp import WhisperPopup from otp.otpbase import OTPGlobals class DistributedChatManager(DistributedObjectGlobal): diff --git a/toontown/building/DistributedBoardingParty.py b/toontown/building/DistributedBoardingParty.py index c3562a8..708f246 100644 --- a/toontown/building/DistributedBoardingParty.py +++ b/toontown/building/DistributedBoardingParty.py @@ -1,4 +1,5 @@ from panda3d.core import * +from panda3d.otp import WhisperPopup from direct.directnotify import DirectNotifyGlobal from toontown.toonbase import TTLocalizer from toontown.toonbase import ToontownGlobals diff --git a/toontown/safezone/DistributedFindFour.py b/toontown/safezone/DistributedFindFour.py index 9060d17..c43ac09 100644 --- a/toontown/safezone/DistributedFindFour.py +++ b/toontown/safezone/DistributedFindFour.py @@ -1,4 +1,5 @@ from panda3d.core import * +from panda3d.otp import WhisperPopup from direct.distributed.ClockDelta import * from direct.task.Task import Task from direct.interval.IntervalGlobal import * diff --git a/toontown/safezone/DistributedPicnicTable.py b/toontown/safezone/DistributedPicnicTable.py index 055e423..6ce7b0d 100644 --- a/toontown/safezone/DistributedPicnicTable.py +++ b/toontown/safezone/DistributedPicnicTable.py @@ -1,4 +1,5 @@ from panda3d.core import * +from panda3d.otp import WhisperPopup from direct.distributed.ClockDelta import * from direct.task.Task import Task from direct.interval.IntervalGlobal import * diff --git a/toontown/toon/LocalToon.py b/toontown/toon/LocalToon.py index bb49c97..86f1f5a 100644 --- a/toontown/toon/LocalToon.py +++ b/toontown/toon/LocalToon.py @@ -12,6 +12,7 @@ from direct.showbase import PythonUtil from direct.directnotify import DirectNotifyGlobal from direct.gui import DirectGuiGlobals from panda3d.core import * +from panda3d.otp import WhisperPopup from otp.avatar import LocalAvatar from otp.login import LeaveToPayDialog from otp.avatar import PositionExaminer