Skip to content

Commit 7a0f5a5

Browse files
committed
tweak: adjust transfer file size limits based on community map data
1 parent bf1adbd commit 7a0f5a5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Core/GameEngine/Source/GameNetwork/ConnectionManager.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ struct TransferFileRule
107107
static const TransferFileRule transferFileRules[TransferFileType_Count] =
108108
{
109109
{ ".map", 5 * 1024 * 1024 },
110-
{ ".ini", 512 * 1024 },
110+
{ ".ini", 2 * 1024 * 1024 },
111111
{ ".str", 512 * 1024 },
112-
{ ".txt", 512 * 1024 },
112+
{ ".txt", 1 * 1024 * 1024 },
113113
{ ".tga", 2 * 1024 * 1024 },
114-
{ ".wak", 512 * 1024 },
114+
{ ".wak", 128 * 1024 },
115115
};
116116

117117
static TransferFileType getTransferFileType(const char* extension)

0 commit comments

Comments
 (0)