projects
/
vchess.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f4e861
)
Small fix
author
Benjamin Auder
<benjamin.auder@somewhere>
Fri, 6 Mar 2020 13:47:15 +0000
(14:47 +0100)
committer
Benjamin Auder
<benjamin.auder@somewhere>
Fri, 6 Mar 2020 13:47:15 +0000
(14:47 +0100)
client/src/views/Game.vue
patch
|
blob
|
blame
|
history
diff --git
a/client/src/views/Game.vue
b/client/src/views/Game.vue
index
edeb18f
..
8e03a86
100644
(file)
--- a/
client/src/views/Game.vue
+++ b/
client/src/views/Game.vue
@@
-540,7
+540,7
@@
export default {
this.gameOver("1/2", message);
} else if (this.drawOffer == "") {
// No effect if drawOffer == "sent"
- if (
!!
this.game.mycolor != this.vr.turn) {
+ if (this.game.mycolor != this.vr.turn) {
alert(this.st.tr["Draw offer only in your turn"]);
return;
}