|
|
@ -3408,10 +3408,10 @@ command_result start_autobutcher(color_ostream &out)
|
|
|
|
auto pworld = Core::getInstance().getWorld();
|
|
|
|
auto pworld = Core::getInstance().getWorld();
|
|
|
|
|
|
|
|
|
|
|
|
enable_autobutcher = true;
|
|
|
|
enable_autobutcher = true;
|
|
|
|
|
|
|
|
|
|
|
|
if (!config_autobutcher.isValid())
|
|
|
|
if (!config_autobutcher.isValid())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
config_autobutcher = pworld->AddPersistentData("autobutcher/config");
|
|
|
|
config_autobutcher = pworld->AddPersistentData("autobutcher/config");
|
|
|
|
config_autobutcher.ival(0) = enable_autobutcher;
|
|
|
|
|
|
|
|
config_autobutcher.ival(1) = sleep_autobutcher;
|
|
|
|
config_autobutcher.ival(1) = sleep_autobutcher;
|
|
|
|
config_autobutcher.ival(2) = enable_autobutcher_autowatch;
|
|
|
|
config_autobutcher.ival(2) = enable_autobutcher_autowatch;
|
|
|
|
config_autobutcher.ival(3) = default_fk;
|
|
|
|
config_autobutcher.ival(3) = default_fk;
|
|
|
@ -3420,6 +3420,8 @@ command_result start_autobutcher(color_ostream &out)
|
|
|
|
config_autobutcher.ival(6) = default_ma;
|
|
|
|
config_autobutcher.ival(6) = default_ma;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
config_autobutcher.ival(0) = enable_autobutcher;
|
|
|
|
|
|
|
|
|
|
|
|
out << "Starting autobutcher." << endl;
|
|
|
|
out << "Starting autobutcher." << endl;
|
|
|
|
init_autobutcher(out);
|
|
|
|
init_autobutcher(out);
|
|
|
|
return CR_OK;
|
|
|
|
return CR_OK;
|
|
|
|