mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-28 23:15:53 -04:00
19 lines
270 B
Python
19 lines
270 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 True:
|
|
core.mountService.dismount(actor, target)
|
|
|
|
return
|
|
|