mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-07-28 23:15:47 -04:00
8 lines
332 B
JavaScript
8 lines
332 B
JavaScript
function executeCommand(galacticManager, player, target, args) {
|
|
var GroupEventIntent = Java.type("intents.GroupEventIntent");
|
|
var GroupEventType = Java.type("intents.GroupEventIntent.GroupEventType");
|
|
|
|
if ((args == null || args.length == 0)) {
|
|
new GroupEventIntent(GroupEventType.GROUP_LEAVE, player, target).broadcast();
|
|
}
|
|
} |