Skip to content

Commit e47d213

Browse files
authored
Merge pull request #294 from AbstractPlay/develop
Fix for Root Bound exploration bug.
2 parents 681b061 + 08eeb64 commit e47d213

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/games/rootbound.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ export class RootBoundGame extends GameBase {
611611

612612
m = m.toLowerCase();
613613
m = m.replace(/\s+/g, "");
614-
let complete = false;
614+
let complete = trusted;
615615
if (!trusted) {
616616
const result = this.validateMove(m);
617617
if (!result.valid) {

0 commit comments

Comments
 (0)