From 0790ace9fde1bf6811244b08a0f29e4ec33bfdce Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Tue, 6 Jun 2023 11:26:10 -0700 Subject: [PATCH] temporarily disable faststart until DF no longer has a race condition --- plugins/faststart.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/faststart.cpp b/plugins/faststart.cpp index de014801c..65895e8bf 100644 --- a/plugins/faststart.cpp +++ b/plugins/faststart.cpp @@ -48,8 +48,10 @@ DFhackCExport command_result plugin_enable(color_ostream &out, bool enable) { if (enable != is_enabled) { +#if 0 if (!INTERPOSE_HOOK(prep_hook, logic).apply(enable)) return CR_FAILURE; +#endif is_enabled = enable; }