mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-09-12 22:45:31 -04:00
11 lines
314 B
Python
11 lines
314 B
Python
# Spawn Area file created with PSWG Planetary Spawn Tool
|
|
import sys
|
|
from java.util import Vector
|
|
|
|
def addSpawnArea(core):
|
|
mixedGroups = Vector()
|
|
mixedGroups.add('dantooine_piket_plains')
|
|
mixedGroups.add('mixed_lair_group_1')
|
|
core.spawnService.addMixedSpawnArea(mixedGroups, 0, 2355, 1024, 'dantooine')
|
|
return
|