# HG changeset patch # User Grumpy7 # Date 1383470347 28800 # Node ID 84fa3c83d63fec2aeec4c9b21bf6c640bbacffe3 # Parent c1c74df0a33e0329687c6e006feb1fb9a5b975b2 char picking up item off by one fixed diff -r c1c74df0a33e -r 84fa3c83d63f Party.cpp --- a/Party.cpp Wed Oct 30 00:47:37 2013 -0700 +++ b/Party.cpp Sun Nov 03 01:19:07 2013 -0800 @@ -1122,7 +1122,7 @@ v8 = 0; for (int i = 0; i < 4; i++) { - v9 = &pPlayers[(uActiveCharacter + i) % 4]; //start with current active player, then cycle right if item won't fit + v9 = ::pPlayers[(uActiveCharacter + i) % 4]; //start with current active player, then cycle right if item won't fit v10 = v9->AddItem(-1, pItem->uItemID); if ( v10 ) {