Skip to content

Commit

Permalink
修复: Economics.Shop 检测物品条件报错
Browse files Browse the repository at this point in the history
  • Loading branch information
Controllerdestiny authored Jun 8, 2024
1 parent 8922d2f commit bf734ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Economics.Shop/Shop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private static void CheckBanksForItem(TSPlayer player, int itemId, ref int itemC
{
if (player.TPlayer.inventory[j].type == itemId)// 检查猪猪储钱罐
{
itemCount += player.TPlayer.bank.item[j].stack;
itemCount += player.TPlayer.inventory[j].stack;
}
}
}
Expand Down

0 comments on commit bf734ed

Please sign in to comment.