Skip to content

Commit

Permalink
Merge pull request #437 from SingingRunner/develop
Browse files Browse the repository at this point in the history
[Version: 0.8.1]

시연용 아이템 추가
  • Loading branch information
Hin1209 authored Jul 5, 2023
2 parents 9d75c19 + 641c822 commit 017a42f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/game/item/playItemPolicy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export class PlayItemPolicy implements ItemPolicy {
Item.SUPER,
Item.FROZEN,
Item.KEY_DOWN,
Item.KEY_DOWN,
Item.CLOUD,
]);
//우주꼬맹단
Expand All @@ -24,6 +25,7 @@ export class PlayItemPolicy implements ItemPolicy {
Item.KEY_UP,
Item.CLOUD,
Item.FROZEN,
Item.FROZEN,
]);
//섭지코지
this.userItemMap.set("bcd11577-71ec-4b7e-b291-f37a3dc3aa70", [
Expand All @@ -33,6 +35,7 @@ export class PlayItemPolicy implements ItemPolicy {
Item.SUPER,
Item.KEY_UP,
Item.KEY_DOWN,
Item.KEY_DOWN,
]);
//오민규리
this.userItemMap.set("d509d351-e801-4733-bc86-5c4de5019035", [
Expand Down Expand Up @@ -73,7 +76,7 @@ export class PlayItemPolicy implements ItemPolicy {
return Item.NULL;
}
this.userCountMap.set(userId, ++count);
if (count === 6) {
if (count === 7) {
this.userCountMap.set(userId, 0);
}
return item;
Expand Down

0 comments on commit 017a42f

Please # to comment.