feat(gvg): 组建期聊天和邮件

This commit is contained in:
luying
2023-01-05 20:50:41 +08:00
parent 03fa74f3d1
commit 6cc38053e7
16 changed files with 156 additions and 13 deletions

View File

@@ -17,6 +17,7 @@ export const CHANNEL_PREFIX = {
SYS: 'sys',
WORLD: 'world',
GUILD: 'guild',
GVG: 'gvg', // 战区
TEAM: 'com_btl_team',
CITY: 'city', // 军团活动诸侯混战按城池分channel
GUILD_AUCTION: 'g_auction', // 军团拍卖
@@ -36,6 +37,8 @@ export const getChannelType = function(prefix: string) {
return 4;
case 'private':
return 5;
case CHANNEL_PREFIX.GVG:
return 6;
}
}
@@ -83,6 +86,7 @@ export const MSG_SOURCE = {
EQUIP_QUALITY_UP: 26,
LADDER_FIRST_CHANGE: 27,
GET_UR_HERO: 28,
GVG_RECURIT: 29,
}
export const DEFAULT_MSG_PER_PAGE = 10;