mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
14 lines
317 B
Python
14 lines
317 B
Python
import sys
|
|
|
|
def setup():
|
|
return
|
|
|
|
def run(core, actor, target, commandString):
|
|
parsedMsg = commandString.split(' ', 5)
|
|
chatService = core.chatService
|
|
chatMsg = parsedMsg[5]
|
|
chatType = int(parsedMsg[1])
|
|
moodId = int(parsedMsg[2])
|
|
chatService.handleSpatialChat(actor, target, chatMsg, chatType, moodId)
|
|
return
|
|
|