mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
12 lines
404 B
Python
12 lines
404 B
Python
import ZoneEntityBase
|
|
|
|
class ZoneEntityAI(ZoneEntityBase.ZoneEntityBase):
|
|
|
|
def __init__(self, level, entId):
|
|
ZoneEntityBase.ZoneEntityBase.__init__(self, level, entId)
|
|
self.setZoneId(self.level.air.allocateZone())
|
|
|
|
def destroy(self):
|
|
if not self.isUberZone():
|
|
self.level.air.deallocateZone(self.getZoneId())
|
|
ZoneEntityBase.ZoneEntityBase.destroy(self)
|