Files
cucore/scripts/commands/generic/cmdGroupJoin.js

6 lines
285 B
JavaScript

function executeCommand(galacticManager, player, target, args) {
var GroupEventIntent = Java.type("intents.GroupEventIntent");
var GroupEventType = Java.type("intents.GroupEventIntent.GroupEventType");
new GroupEventIntent(GroupEventType.GROUP_JOIN, player).broadcast();
}