mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-02 03:15:52 -04:00
Added more guild features, fixed re-joining chat channels on relog
Changed guilds to be saved to a TreeMap instead of solely the SWGSet. Fixed uses string Added UnknownAbilityPacket (was sent for every new ability, doesnt seem to do anything) Lots of guild improvement/features added.
This commit is contained in:
@@ -897,7 +897,8 @@ public class ObjectService implements INetworkDispatch {
|
||||
}
|
||||
}
|
||||
|
||||
for (Integer roomId : ghost.getJoinedChatChannels()) {
|
||||
List<Integer> joinedChannels = ghost.getJoinedChatChannels();
|
||||
for (Integer roomId : joinedChannels) {
|
||||
ChatRoom room = core.chatService.getChatRoom(roomId);
|
||||
|
||||
if (room != null) { core.chatService.joinChatRoom(objectShortName, roomId); }
|
||||
|
||||
Reference in New Issue
Block a user