Skip to content

Commit

Permalink
Merge pull request UnrealMultiple#180 from Controllerdestiny/main
Browse files Browse the repository at this point in the history
修复: Economics.Shop 检测物品条件报错
Controllerdestiny authored Jun 8, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 8922d2f + bf734ed commit fb70223
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
@@ -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;
}
}
}

0 comments on commit fb70223

Please sign in to comment.