From bf8eb52a9629c87bbfe89c17652d0a96816a94b7 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Mon, 28 Nov 2022 16:54:21 +0200 Subject: [PATCH] bumped number of writers limit from 20 to 32 --- app/imports/constants/STORAGE_LIMITS.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/imports/constants/STORAGE_LIMITS.js b/app/imports/constants/STORAGE_LIMITS.js index cbc647e6..f9fd1f6c 100644 --- a/app/imports/constants/STORAGE_LIMITS.js +++ b/app/imports/constants/STORAGE_LIMITS.js @@ -30,7 +30,7 @@ const STORAGE_LIMITS = Object.freeze({ rollCount: 64, statsToTarget: 64, tagCount: 64, - writersCount: 20, + writersCount: 32, libraryCollectionCount: 32, pointBuyRowsCount: 32, });