From 6e4542f444b0309cbd1ebe976200db5daab5bebf Mon Sep 17 00:00:00 2001 From: qndel Date: Mon, 4 Apr 2022 13:42:30 +0200 Subject: [PATCH] increase max stash pages from 50 to 100 --- Source/qol/stash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/qol/stash.cpp b/Source/qol/stash.cpp index 16d7985fa..2c65f24a9 100644 --- a/Source/qol/stash.cpp +++ b/Source/qol/stash.cpp @@ -28,7 +28,7 @@ int WithdrawGoldValue; namespace { -constexpr unsigned CountStashPages = 50; +constexpr unsigned CountStashPages = 100; constexpr unsigned LastStashPage = CountStashPages - 1; int InitialWithdrawGoldValue;