diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-06-24 00:49:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-24 00:49:33 +0000 |
commit | 11b6798830e90c6a5928070635d9d42631c4d5c6 (patch) | |
tree | 99269785802c8e4d3fb9c1ac353119967e5b35a1 /src | |
parent | 686d79eca62bbf9b3da22eb170bdc6bb82622370 (diff) | |
parent | e26703f1e8369e18423a17db5e0bace769bea643 (diff) | |
download | abaddon-portaudio-11b6798830e90c6a5928070635d9d42631c4d5c6.tar.gz abaddon-portaudio-11b6798830e90c6a5928070635d9d42631c4d5c6.zip |
Merge pull request #181 from TheMorc/TheMorc-BaseAttachementSize
Update attachment size limits for base users
Diffstat (limited to 'src')
-rw-r--r-- | src/constants.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/constants.hpp b/src/constants.hpp index 256f85e..5ed123c 100644 --- a/src/constants.hpp +++ b/src/constants.hpp @@ -4,7 +4,7 @@ constexpr static uint64_t SnowflakeSplitDifference = 600; constexpr static int MaxMessagesForChatCull = 50; // this has to be 50 (for now) cuz that magic number is used in a couple other places and i dont feel like replacing them constexpr static int AttachmentItemSize = 120; -constexpr static int BaseAttachmentSizeLimit = 8 * 1024 * 1024; +constexpr static int BaseAttachmentSizeLimit = 25 * 1024 * 1024; constexpr static int NitroClassicAttachmentSizeLimit = 50 * 1024 * 1024; constexpr static int NitroAttachmentSizeLimit = 100 * 1024 * 1024; constexpr static int BoostLevel2AttachmentSizeLimit = 50 * 1024 * 1024; |