Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1801,6 +1801,12 @@ void CuiChatRoomManager::receiveFailedEnterRoom (const uint32 sequen
case SWG_CHAT_ERR_NOT_WARDEN:
stringId = &CuiStringIdsChatRoom::join_fail_not_warden_prose;
break;
case SWG_CHAT_ERR_NOT_GUILD_LEADER:
stringId = &CuiStringIdsChatRoom::join_fail_not_guild_leader_prose;
break;
case SWG_CHAT_ERR_NOT_CITY_MAYOR:
stringId = &CuiStringIdsChatRoom::join_fail_not_mayor_prose;
break;
case SWG_CHAT_ERR_INVALID_OBJECT:
stringId = &CuiStringIdsChatRoom::join_fail_invalid_object_prose;
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ namespace CuiStringIdsChatRoom
MAKE_STRING_ID(ui_chatroom, join_fail_invalid_object_prose);
MAKE_STRING_ID(ui_chatroom, join_fail_no_game_server_prose);
MAKE_STRING_ID(ui_chatroom, join_fail_not_warden_prose);
MAKE_STRING_ID(ui_chatroom, join_fail_not_guild_leader_prose);
MAKE_STRING_ID(ui_chatroom, join_fail_not_mayor_prose);
MAKE_STRING_ID(ui_chatroom, list_received);
MAKE_STRING_ID(ui_chatroom, not_a_room);
MAKE_STRING_ID(ui_chatroom, not_found);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ enum ERROR_CODES
SWG_CHAT_ERR_INVALID_OBJECT,
SWG_CHAT_ERR_NO_GAME_SERVER,
SWG_CHAT_ERR_NOT_WARDEN,
SWG_CHAT_ERR_NOT_GUILD_LEADER,
SWG_CHAT_ERR_NOT_CITY_MAYOR,
SWG_CHAT_ERR_WRONG_GCW_REGION_DEFENDER_FACTION
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ namespace ChatRoomTypes
static const std::string ROOM_TRADER = "Trader";
static const std::string ROOM_BEAST_MASTERY = "BeastMastery";
static const std::string ROOM_WARDEN = "Warden";
static const std::string ROOM_GUILD_LEADER = "GuildLeaders";
static const std::string ROOM_CITY_MAYOR = "CityMayors";
}//namespace ChatRoomTypes

enum
Expand Down