From 56dfacebe34bac5ab53108e34b7872fee78ddf65 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Sat, 16 Feb 2019 18:20:52 +0100 Subject: Write Quit, not Stop, on end My AI's seem ready for this; they never worked with Stop anyway. --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index ecd12f7..fa07cf4 100644 --- a/main.cpp +++ b/main.cpp @@ -326,7 +326,7 @@ static void playMatch(Player &p1, Player &p2, int index, const Params ¶ms) { match_done: for (int i = 0; i < 2; i++) { - bool success = procs[i].writeLine("Stop"); + bool success = procs[i].writeLine("Quit"); procs[i].unStop(); if (success) usleep(10000); int ret = procs[i].terminate(); -- cgit v1.2.3