From 224d29de88f0607244bad10ea9a1a2d0587c3b9d Mon Sep 17 00:00:00 2001 From: Eric Wald Date: Sat, 13 Feb 2016 21:01:00 -0700 Subject: [PATCH] Reversing o-W-g autogems default setting Starter pack users have complained that it's too big a change from vanilla, particularly given that strange moods need rough gems. --- plugins/autogems.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/autogems.cpp b/plugins/autogems.cpp index 2ca99721f..9bdfcb02c 100644 --- a/plugins/autogems.cpp +++ b/plugins/autogems.cpp @@ -284,7 +284,7 @@ DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_chan if (enabled && World::isFortressMode()) { // Determine whether auto gem cutting has been disabled for this fort. auto config = World::GetPersistentData(CONFIG_KEY); - running = !(config.isValid() && config.ival(0)); + running = config.isValid() && !config.ival(0); last_frame_count = world->frame_counter; } } else if (event == DFHack::SC_MAP_UNLOADED) { @@ -302,9 +302,9 @@ DFhackCExport command_result plugin_enable(color_ostream& out, bool enable) { } enabled = enable; - running = enabled && World::isFortressMode(); } + running = enabled && World::isFortressMode(); return CR_OK; }