mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-08-04 05:16:49 -04:00
11 lines
305 B
Groovy
11 lines
305 B
Groovy
import resources.objects.SWGObject
|
|
import resources.player.Player
|
|
import services.galaxy.GalacticManager
|
|
|
|
static def execute(GalacticManager galacticManager, Player player, SWGObject target, String args) {
|
|
if (args.contains(" ")) {
|
|
return
|
|
}
|
|
|
|
player.getCreatureObject().setMoodId(Byte.valueOf(args))
|
|
} |