Limit magnetization to 8 items at a time.

This commit is contained in:
Mari the Deer 2022-08-17 16:10:17 +02:00
commit 2525caeb4a
2 changed files with 3 additions and 3 deletions

View file

@ -878,7 +878,7 @@ Class Demolitionist : PlayerPawn
magitem_cnt = 0;
return;
}
if ( !swwm_usetopickup )
if ( (magitem_cnt < 8) && !swwm_usetopickup )
{
let bt = BlockThingsIterator.Create(self,500);
while ( bt.Next() )