Skip to content

Commit 9931c40

Browse files
committed
isRemake 체크 수정
1 parent 12f96d7 commit 9931c40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Dto/MatchV5/MatchDetailDto.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function getGameDurationSecond() {
7575
* @return bool
7676
*/
7777
public function isRemake() {
78-
return $this->getQueueType()->isTutorial() && $this->getGameDurationSecond() < 300;
78+
return !$this->getQueueType()->isTutorial() && $this->getGameDurationSecond() < 300;
7979
}
8080

8181
/**

0 commit comments

Comments
 (0)