Browse Source

fix uninitialized

pull/1294/merge
qndel 5 years ago committed by Anders Jenbo
parent
commit
25095b2ee6
  1. 2
      Source/items.cpp

2
Source/items.cpp

@ -2784,7 +2784,7 @@ void SetupAllItems(int ii, int idx, int iseed, int lvl, int uper, bool onlygood,
void SpawnItem(int m, int x, int y, bool sendmsg)
{
int idx;
bool onlygood;
bool onlygood = true;
if (monster[m]._uniqtype || ((monster[m].MData->mTreasure & 0x8000) && gbIsMultiplayer)) {
idx = RndUItem(m);

Loading…
Cancel
Save