From 1eb253c92d13f64ac3985b2e24d31858426405f3 Mon Sep 17 00:00:00 2001 From: Jesse McDonald Date: Sun, 29 Mar 2020 01:15:13 -0500 Subject: [PATCH] fix for metadata omitted when replaying resignation moves --- js/pacosako.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/pacosako.js b/js/pacosako.js index 364649e..ef3f0b0 100644 --- a/js/pacosako.js +++ b/js/pacosako.js @@ -613,7 +613,7 @@ class Game { } if (move.resign) { - this.resign(); + this.resign(move.meta); } else if (move.phantom) { this.move(PHANTOM, move.to, move.meta); } else {