mirror of
https://bitbucket.org/projectswg/cucore.git
synced 2026-08-04 04:16:00 -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 |