mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
17 lines
248 B
Python
17 lines
248 B
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
if actor.canMount(target) is False: return
|
|
|
|
if not actor.isMounted():
|
|
actor.setMounted(1)
|
|
target.initMount(actor)
|
|
else:
|
|
target.unmount(actor)
|
|
|
|
return
|
|
|