mirror of
https://bitbucket.org/projectswg/cucore.git
synced 2026-07-31 00:15:48 -04:00
8 lines
350 B
JavaScript
8 lines
350 B
JavaScript
function executeCommand(galacticManager, player, target, args) {
|
|
var GroupEventIntent = Java.type("intents.GroupEventIntent");
|
|
var GroupEventType = Java.type("intents.GroupEventIntent.GroupEventType");
|
|
|
|
if (target != null && (args == null || args.length == 0)) {
|
|
new GroupEventIntent(GroupEventType.GROUP_LEAVE, player, target).broadcast();
|
|
}
|
|
} |