diff --git a/shared/domain/activityField/popUpShopField.ts b/shared/domain/activityField/popUpShopField.ts index 72fac1803..98b7ad4d8 100644 --- a/shared/domain/activityField/popUpShopField.ts +++ b/shared/domain/activityField/popUpShopField.ts @@ -471,7 +471,7 @@ class PopUpShopShow { for(let pkg of data.packages) { for(let item of pkg.items) { - if(item.isPushing) { + if(item.isPushing && item.hasBoughtCnt < item.buyCnt) { let obj = new PopUpShopItemShow(item); this.items.push(obj); }