Browse Source

Update stores.cpp

pull/88/head
Anders Jenbo 7 years ago committed by GitHub
parent
commit
4f754d82ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Source/stores.cpp

4
Source/stores.cpp

@ -2522,8 +2522,8 @@ void PlaceStoreGold(int v)
done = FALSE;
for (i = 0; i < 40 && !done; i++) {
xx = 10 * (i / 10);
yy = i % 10;
yy = 10 * (i / 10);
xx = i % 10;
if (!plr[myplr].InvGrid[xx + yy]) {
ii = plr[myplr]._pNumInv;
GetGoldSeed(myplr, &golditem);

Loading…
Cancel
Save