Skip to content

Commit

Permalink
playAction: wrong calc winning table fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stories2 committed Feb 26, 2019
1 parent 88f7be2 commit 0849f45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions functions/Action/playAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ exports.rockScissorsPapper = function (request, response, callbackFunc) {
const responseManager = request.responseManager
var winningTable = {
"✌ 가위": [
2, 1, 3
2, 3, 1
],
"✊ 바위": [
3, 2, 1
1, 2, 3
],
"✋ 보": [
1, 3, 2
3, 1, 2
]
}
var type = ["✌ 가위", "✊ 바위", "✋ 보"]
Expand Down

0 comments on commit 0849f45

Please sign in to comment.