7 lines
328 B
Python
7 lines
328 B
Python
from toontown.safezone import DistributedTreasureAI
|
|
from direct.distributed.ClockDelta import *
|
|
|
|
class DistributedTagTreasureAI(DistributedTreasureAI.DistributedTreasureAI):
|
|
|
|
def __init__(self, air, treasurePlanner, x, y, z):
|
|
DistributedTreasureAI.DistributedTreasureAI.__init__(self, air, treasurePlanner, x, y, z)
|