Files
Holocore/scripts/commands/generic/groupUninvite.groovy
T
2017-05-11 13:57:38 -04:00

10 lines
405 B
Groovy

import intents.GroupEventIntent
import resources.objects.SWGObject
import resources.objects.creature.CreatureObject
import resources.player.Player
import services.galaxy.GalacticManager
static def execute(GalacticManager galacticManager, Player player, SWGObject target, String args) {
new GroupEventIntent(GroupEventIntent.GroupEventType.GROUP_UNINVITE, player, target as CreatureObject).broadcast()
}