mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
793 B
C++
20 lines
793 B
C++
#include "FortChatManager.h"
|
|
|
|
UFortChatManager::UFortChatManager() {
|
|
this->GlobalChatJoinHelper = NULL;
|
|
this->FoundersChatJoinHelper = NULL;
|
|
this->bShouldJoinGlobalChat = true;
|
|
this->bShouldRequestGeneralChatRooms = true;
|
|
this->bShouldJoinFounderChat = true;
|
|
this->bIsAthenaGlobalChatEnabled = true;
|
|
this->RecommendChatFailureDelay = 30;
|
|
this->RecommendChatBackoffMultiplier = 2.00f;
|
|
this->RecommendChatRandomWindow = 120.00f;
|
|
this->RecommendChatFailureCountCap = 7;
|
|
this->ReserveChatURL = TEXT("/api/game/v2/chat/`accountId/reserveGeneralChatRooms/`subgame/`platform");
|
|
this->GlobalChatName = TEXT("Global");
|
|
this->FounderChatName = TEXT("Founder");
|
|
this->ProfileTokenVerifyURL = TEXT("/api/game/v2/profileToken/verify/`accountId");
|
|
}
|
|
|