Remove item max stack check.

This commit is contained in:
Deathmax 2011-06-03 10:51:02 +08:00
parent 0aa44fed67
commit daf56053c8
2 changed files with 3 additions and 3 deletions

View file

@ -466,11 +466,11 @@ namespace TShockAPI
public static bool CheckInventory(int plr)
{
for (int i = 0; i < 44; i++)
/*for (int i = 0; i < 44; i++)
{
if (Main.player[plr].inventory[i].stack > Main.player[plr].inventory[i].maxStack)
return true;
}
}*/
return false;
}
}