mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-01 02:16:15 -04:00
9 lines
285 B
Python
9 lines
285 B
Python
from resources.common import TerminalType
|
|
import sys
|
|
|
|
def setup(core, object):
|
|
|
|
core.mapService.addLocation(object.getPlanet(), 'Mission Terminal', object.getPosition().x, object.getPosition().z, 41, 44, 0)
|
|
object.setAttachment("terminalType", TerminalType.MISSION_GENERIC)
|
|
return
|
|
|