Skip to content

Commit

Permalink
Fix: Upload Limit raised to 16 MB (#2586)
Browse files Browse the repository at this point in the history
more .ogg more better
  • Loading branch information
Cupax3 authored Dec 5, 2024
1 parent 7022e77 commit 8cc7d9a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/modules/client/client_procs.dm
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
////////////
//SECURITY//
////////////
#define UPLOAD_LIMIT 524288 //Restricts client uploads to the server to 0.5MB
#define UPLOAD_LIMIT_ADMIN 2621440 //Restricts admin client uploads to the server to 2.5MB
// Divide by 1024 to get actual number of MB
#define UPLOAD_LIMIT 524288 //Restricts client uploads to the server to 0.5MB
#define UPLOAD_LIMIT_ADMIN 16777216 //Restricts admin client uploads to the server to 16MB

GLOBAL_LIST_INIT(blacklisted_builds, list(
"1407" = "bug preventing client display overrides from working leads to clients being able to see things/mobs they shouldn't be able to see",
Expand Down

0 comments on commit 8cc7d9a

Please sign in to comment.