mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-07-30 00:15:50 -04:00
Added new common methods to IntentFactory as well as suitable JavaDoc for all methods Renamed "objManager" function variable in command scripts execute function to galManager (GalacticManager instance)
5 lines
306 B
JavaScript
5 lines
306 B
JavaScript
var execute = function(galManager, player, target, args) {
|
|
var ChatAvatarRequestIntent = Java.type("intents.chat.ChatAvatarRequestIntent");
|
|
var RequestType = Java.type("intents.chat.ChatAvatarRequestIntent.RequestType");
|
|
new ChatAvatarRequestIntent(player, null, RequestType.FRIEND_LIST).broadcast();
|
|
}; |