Skip to content

Commit

Permalink
Update stores.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
AJenbo committed Apr 12, 2019
1 parent 3e09e6d commit 4f754d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/stores.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 4f754d8

Please sign in to comment.