oldschool-toontown/toontown/uberdog/TTSpeedchatRelay.py

17 lines
635 B
Python
Raw Normal View History

2019-11-02 17:27:54 -05:00
from direct.distributed.DistributedObjectGlobal import DistributedObjectGlobal
from direct.directnotify.DirectNotifyGlobal import directNotify
from otp.otpbase import OTPGlobals
from otp.uberdog.SpeedchatRelay import SpeedchatRelay
from otp.uberdog import SpeedchatRelayGlobals
class TTSpeedchatRelay(SpeedchatRelay):
def __init__(self, cr):
SpeedchatRelay.__init__(self, cr)
def sendSpeedchatToonTask(self, receiverId, taskId, toNpcId, toonProgress, msgIndex):
self.sendSpeedchatToRelay(receiverId, SpeedchatRelayGlobals.TOONTOWN_QUEST, [taskId,
toNpcId,
toonProgress,
msgIndex])