scenedit use merged form of coord arguments

This commit is contained in:
2025-01-09 20:59:14 -06:00
committed by Celtic Minstrel
parent 31cb2d7cab
commit d8b99dbefe

View File

@@ -117,9 +117,11 @@ void launch_scenario() {
if(editing_town){
command_stream << "--town " << cur_town;
}else{
command_stream << "--out-x " << cur_out.x << " --out-y " << cur_out.y;
command_stream << "--out-sec (" << cur_out.x << "," << cur_out.y << ")";
}
command_stream << " --x " << cen_x << " --y " << cen_y;
command_stream << " --loc (" << cen_x << "," << cen_y << ")";
LOG(command_stream.str());
// TODO allow specifying a debug party path as an editor preference