mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-07-31 01:15:50 -04:00
10 lines
200 B
Python
10 lines
200 B
Python
from intents.chat import SpatialChatIntent
|
|
import sys
|
|
|
|
#Args: moodId
|
|
def execute(objManager, player, target, args):
|
|
if " " in args:
|
|
return
|
|
|
|
player.getCreatureObject().setMoodId(int(args))
|
|
return |