fix(14): winning logic for rock

This commit is contained in:
efim 2023-07-02 07:22:37 +00:00
parent 18d91b742e
commit 0c8a9b91e0
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ position: absolute;
case object Rock extends Choice {
def name: String = "rock"
def iconPath: String = "public/images/icon-rock.svg"
def isBeating: Set[Choice] = Set(Rock)
def isBeating: Set[Choice] = Set(Scissors)
}
}