diff --git a/toontown/building/DistributedElevatorIntAI.py b/toontown/building/DistributedElevatorIntAI.py index 2cbc789..17a37c4 100644 --- a/toontown/building/DistributedElevatorIntAI.py +++ b/toontown/building/DistributedElevatorIntAI.py @@ -1,9 +1,9 @@ from otp.ai.AIBase import * from toontown.toonbase import ToontownGlobals from direct.distributed.ClockDelta import * -from .ElevatorConstants import * +from toontown.building.ElevatorConstants import * import copy -from . import DistributedElevatorAI +from toontown.building import DistributedElevatorAI from direct.fsm import ClassicFSM from direct.fsm import State from direct.task import Task diff --git a/toontown/building/DistributedSuitInteriorAI.py b/toontown/building/DistributedSuitInteriorAI.py index 1b7c1f3..fd81bd7 100644 --- a/toontown/building/DistributedSuitInteriorAI.py +++ b/toontown/building/DistributedSuitInteriorAI.py @@ -1,7 +1,7 @@ from toontown.toonbase.ToontownBattleGlobals import * from otp.ai.AIBaseGlobal import * from direct.distributed.ClockDelta import * -from .ElevatorConstants import * +from toontown.building.ElevatorConstants import * from direct.directnotify import DirectNotifyGlobal from direct.fsm import ClassicFSM, State from direct.distributed import DistributedObjectAI @@ -9,7 +9,7 @@ from direct.fsm import State from toontown.battle import DistributedBattleBldgAI from toontown.battle import BattleBase from direct.task import Timer -from . import DistributedElevatorIntAI +from toontown.building import DistributedElevatorIntAI import copy class DistributedSuitInteriorAI(DistributedObjectAI.DistributedObjectAI): diff --git a/toontown/building/SuitPlannerInteriorAI.py b/toontown/building/SuitPlannerInteriorAI.py index 982827b..fed14fa 100644 --- a/toontown/building/SuitPlannerInteriorAI.py +++ b/toontown/building/SuitPlannerInteriorAI.py @@ -3,7 +3,7 @@ import random, functools from toontown.suit import SuitDNA from direct.directnotify import DirectNotifyGlobal from toontown.suit import DistributedSuitAI -from . import SuitBuildingGlobals +from toontown.building import SuitBuildingGlobals class SuitPlannerInteriorAI: notify = DirectNotifyGlobal.directNotify.newCategory('SuitPlannerInteriorAI') diff --git a/toontown/classicchars/DistributedDonaldDockAI.py b/toontown/classicchars/DistributedDonaldDockAI.py index 75763ea..ac41458 100644 --- a/toontown/classicchars/DistributedDonaldDockAI.py +++ b/toontown/classicchars/DistributedDonaldDockAI.py @@ -1,10 +1,10 @@ from otp.ai.AIBaseGlobal import * -from . import DistributedCCharBaseAI +from toontown.classicchars import DistributedCCharBaseAI from direct.directnotify import DirectNotifyGlobal from direct.fsm import ClassicFSM, State from direct.fsm import State from direct.task import Task -from . import CharStateDatasAI +from toontown.classicchars import CharStateDatasAI from toontown.toonbase import ToontownGlobals from toontown.toonbase import TTLocalizer diff --git a/toontown/classicchars/DistributedPlutoAI.py b/toontown/classicchars/DistributedPlutoAI.py index c55026f..b073496 100644 --- a/toontown/classicchars/DistributedPlutoAI.py +++ b/toontown/classicchars/DistributedPlutoAI.py @@ -1,10 +1,10 @@ from otp.ai.AIBaseGlobal import * -from . import DistributedCCharBaseAI +from toontown.classicchars import DistributedCCharBaseAI from direct.directnotify import DirectNotifyGlobal from direct.fsm import ClassicFSM, State from direct.fsm import State from direct.task import Task -from . import CharStateDatasAI, CCharChatter +from toontown.classicchars import CharStateDatasAI, CCharChatter from toontown.toonbase import ToontownGlobals from toontown.toonbase import TTLocalizer diff --git a/toontown/coghq/DistributedFactoryAI.py b/toontown/coghq/DistributedFactoryAI.py index 548ec18..44c74d7 100644 --- a/toontown/coghq/DistributedFactoryAI.py +++ b/toontown/coghq/DistributedFactoryAI.py @@ -1,10 +1,10 @@ from otp.level import DistributedLevelAI from direct.directnotify import DirectNotifyGlobal -from . import LevelSuitPlannerAI, FactoryBase +from toontown.coghq import LevelSuitPlannerAI, FactoryBase from direct.task import Task -from . import FactoryEntityCreatorAI, FactorySpecs +from toontown.coghq import FactoryEntityCreatorAI, FactorySpecs from otp.level import LevelSpec -from . import CogDisguiseGlobals +from toontown.coghq import CogDisguiseGlobals from toontown.suit import DistributedFactorySuitAI from toontown.toonbase import ToontownGlobals, ToontownBattleGlobals from toontown.coghq import DistributedBattleFactoryAI diff --git a/toontown/coghq/DistributedLawOfficeAI.py b/toontown/coghq/DistributedLawOfficeAI.py index 2516d69..df360e1 100644 --- a/toontown/coghq/DistributedLawOfficeAI.py +++ b/toontown/coghq/DistributedLawOfficeAI.py @@ -1,10 +1,10 @@ from otp.level import DistributedLevelAI from direct.directnotify import DirectNotifyGlobal -from . import LevelSuitPlannerAI, LawOfficeBase +from toontown.coghq import LevelSuitPlannerAI, LawOfficeBase from direct.task import Task -from . import FactoryEntityCreatorAI, FactorySpecs +from toontown.coghq import FactoryEntityCreatorAI, FactorySpecs from otp.level import LevelSpec -from . import CogDisguiseGlobals +from toontown.coghq import CogDisguiseGlobals from toontown.suit import DistributedFactorySuitAI from toontown.toonbase import ToontownGlobals, ToontownBattleGlobals from toontown.coghq import DistributedBattleFactoryAI diff --git a/toontown/coghq/DistributedLawOfficeFloorAI.py b/toontown/coghq/DistributedLawOfficeFloorAI.py index 7fc7414..dd2d545 100644 --- a/toontown/coghq/DistributedLawOfficeFloorAI.py +++ b/toontown/coghq/DistributedLawOfficeFloorAI.py @@ -1,10 +1,10 @@ from otp.level import DistributedLevelAI from direct.directnotify import DirectNotifyGlobal -from . import LevelSuitPlannerAI, LawOfficeBase +from toontown.coghq import LevelSuitPlannerAI, LawOfficeBase from direct.task import Task -from . import FactoryEntityCreatorAI, FactorySpecs +from toontown.coghq import FactoryEntityCreatorAI, FactorySpecs from otp.level import LevelSpec -from . import CogDisguiseGlobals +from toontown.coghq import CogDisguiseGlobals from toontown.suit import DistributedFactorySuitAI from toontown.toonbase import ToontownGlobals, ToontownBattleGlobals from toontown.coghq import DistributedBattleFactoryAI diff --git a/toontown/coghq/LevelSuitPlannerAI.py b/toontown/coghq/LevelSuitPlannerAI.py index 7776508..7f829fd 100644 --- a/toontown/coghq/LevelSuitPlannerAI.py +++ b/toontown/coghq/LevelSuitPlannerAI.py @@ -2,7 +2,7 @@ from pandac.PandaModules import * from direct.showbase import DirectObject from toontown.suit import SuitDNA from direct.directnotify import DirectNotifyGlobal -from . import LevelBattleManagerAI +from toontown.coghq import LevelBattleManagerAI import random class LevelSuitPlannerAI(DirectObject.DirectObject):