From 6e8f0ffa5b57fc4677754d736424e94ffbbc0478 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sun, 5 May 2019 18:00:20 +0200 Subject: [PATCH] Fix SetupAllUseful --- Source/items.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/items.cpp b/Source/items.cpp index 7667b0d7a..18b4cc63e 100644 --- a/Source/items.cpp +++ b/Source/items.cpp @@ -2165,12 +2165,12 @@ void SetupAllUseful(int ii, int iseed, int lvl) SetRndSeed(iseed); if (random(34, 2)) - idx = 11; + idx = IDI_HEAL; else - idx = 12; + idx = IDI_MANA; if (lvl > 1 && !random(34, 3)) - idx = 14; + idx = IDI_PORTAL; GetItemAttrs(ii, idx, lvl); item[ii]._iCreateInfo = lvl + 384;