Skip to content

Commit

Permalink
Merge pull request JACoders#1069 from jolovin/issue-1062
Browse files Browse the repository at this point in the history
Fix seeker drone crashing SP on maptransition
  • Loading branch information
xycaleth authored Jan 15, 2021
2 parents d8dba2c + b81d6da commit d2ed03a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/g_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -661,11 +661,11 @@ void Player_CacheFromPrevLevel(void)

extern gitem_t *FindItemForInventory( int inv );

for ( i = 1 ; i < 16 ; i++ )
for ( i = 0 ; i < 16 ; i++ )
{
if ( ibits & ( 1 << i ) )
{
RegisterItem( FindItemForInventory( i-1 ));
RegisterItem( FindItemForInventory( i ));
}
}
}
Expand Down

0 comments on commit d2ed03a

Please sign in to comment.