mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
17 lines
268 B
Python
17 lines
268 B
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
if not target:
|
|
return
|
|
|
|
if actor.getObjectID() != target.getOwnerId():
|
|
return
|
|
|
|
if core.mountService.isMounted(actor) is False:
|
|
core.mountService.mount(actor, target)
|
|
|
|
return
|