From a69c1ceebf458f4c031cc32f9a4f6c287f23b25e Mon Sep 17 00:00:00 2001 From: qndel Date: Sun, 11 Apr 2021 12:51:13 +0200 Subject: [PATCH] fix wirt price bug --- Source/items.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/items.cpp b/Source/items.cpp index d7cc34fe5..5db6cdd89 100644 --- a/Source/items.cpp +++ b/Source/items.cpp @@ -4977,7 +4977,7 @@ void SpawnBoy(int lvl) GetItemBonus(0, itype, lvl, 2 * lvl, true, true); if (!gbIsHellfire) { - if (items[0]._iIvalue > 140000) { + if (items[0]._iIvalue > 90000) { keepgoing = true; // prevent breaking the do/while loop too early by failing hellfire's condition in while continue; }