Files
Holocore/scripts/commands/generic/groupDecline.js
T

7 lines
282 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_DECLINE, player).broadcast();
}