mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-08-01 02:15:58 -04:00
Fixed removeFriend command not properly lowercasing Fixed variety of issues with the community window not refreshing friends list properly Fixed empty "does not exist" messages for friends list Fixed bug allowing you to add yourself to your friends list
8 lines
248 B
Python
8 lines
248 B
Python
from intents.chat import ChatAvatarRequestIntent
|
|
from intents.chat.ChatAvatarRequestIntent.RequestType import FRIEND_LIST
|
|
|
|
|
|
def execute(galacticManager, player, target, args):
|
|
ChatAvatarRequestIntent(player, None, FRIEND_LIST).broadcast()
|
|
return
|