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:
Waverunner
2014-05-29 13:51:40 -04:00
parent ce88128c2d
commit 45c91104e0
17 changed files with 592 additions and 264 deletions
+2 -1
View File
@@ -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); }