mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
14 lines
310 B
Python
14 lines
310 B
Python
from resources.datatables import PlayerFlags
|
|
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
command = core.commandService.getCommandByName("toggleawayfromkeyboard")
|
|
|
|
if command:
|
|
core.commandService.processCommand(actor, target, command, 0, commandString)
|
|
|
|
return
|