From 7a14bf475ffa020b53bbc67b8fb482068536880d Mon Sep 17 00:00:00 2001 From: Susan Date: Sat, 16 Jan 2021 23:23:05 +0000 Subject: [PATCH] don't turn off seedwatch on map load fixes #682 --- plugins/seedwatch.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/seedwatch.cpp b/plugins/seedwatch.cpp index bc65bc4ff..378433957 100644 --- a/plugins/seedwatch.cpp +++ b/plugins/seedwatch.cpp @@ -283,6 +283,9 @@ DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_chan { switch (event) { case SC_MAP_LOADED: + if(running) + out.print("seedwatch supervision started.\n"); + break; case SC_MAP_UNLOADED: if (running) out.printerr("seedwatch deactivated due to game load/unload\n");