mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
- Nightsister vs Singing Mountain Clan Battle - Wild NS and SMC spawns in some areas of the planet
10 lines
271 B
Python
10 lines
271 B
Python
# Spawn Area file created with PSWG Planetary Spawn Tool
|
|
import sys
|
|
from java.util import Vector
|
|
|
|
def addSpawnArea(core):
|
|
dynamicGroups = Vector()
|
|
dynamicGroups.add('smc_dyn_1')
|
|
core.spawnService.addDynamicSpawnArea(dynamicGroups, 512, 4792, 1966, 'dathomir')
|
|
return
|