Remove extra whitespace.

develop
Japa 2018-01-28 10:12:50 +05:30
parent 358a2155b3
commit b78b2feed2
2 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 83d4183a4c15fd3f37b53c7f911f4bfb75f21ee2 Subproject commit 421c5ef8aedf0644d099ff1b779ac6fdf0624478

@ -273,7 +273,7 @@ DFhackCExport command_result plugin_init(color_ostream &out, std::vector <Plugin
)); ));
commands.push_back(PluginCommand("RemoteFortressReader_version", "List the loaded RemoteFortressReader version", RemoteFortressReader_version, false, "This is used for plugin version checking.")); commands.push_back(PluginCommand("RemoteFortressReader_version", "List the loaded RemoteFortressReader version", RemoteFortressReader_version, false, "This is used for plugin version checking."));
commands.push_back(PluginCommand( commands.push_back(PluginCommand(
"generate_image", "generate_image",
"make a blank art image using inbuilt DF functions.", "make a blank art image using inbuilt DF functions.",
generate_image, false, generate_image, false,
"used to test the function pointer being correct. If everything works, the subid should increment each time.")); "used to test the function pointer being correct. If everything works, the subid should increment each time."));
@ -1557,7 +1557,7 @@ static command_result GetPlantList(color_ostream &stream, const BlockRequest *in
out_plant->set_pos_y(plant->pos.y); out_plant->set_pos_y(plant->pos.y);
out_plant->set_pos_z(plant->pos.z); out_plant->set_pos_z(plant->pos.z);
} }
} }
#endif #endif
return CR_OK; return CR_OK;
} }
@ -1890,7 +1890,7 @@ static command_result GetWorldMap(color_ostream &stream, const EmptyMessage *in,
} }
else else
out->add_water_elevation(99); out->add_water_elevation(99);
} }
DFCoord pos = GetMapCenter(); DFCoord pos = GetMapCenter();
out->set_center_x(pos.x); out->set_center_x(pos.x);
out->set_center_y(pos.y); out->set_center_y(pos.y);