Update autofarm.cpp

`dts::make_unique`, not `std::make_unique`, sorry my bad
develop
Kelly Kinkade 2021-08-07 15:51:21 -05:00
parent ce50bbdfde
commit 685e5111ae
1 changed files with 1 additions and 1 deletions

@ -388,7 +388,7 @@ DFhackCExport command_result plugin_init (color_ostream &out, std::vector <Plugi
)
);
}
autofarmInstance = std::move(std::make_unique<AutoFarm>());
autofarmInstance = std::move(dts::make_unique<AutoFarm>());
return CR_OK;
}