From 94b2ca68d8ec9bbbe09139c039b87f4c4b00ba13 Mon Sep 17 00:00:00 2001 From: lethosor Date: Tue, 13 Feb 2018 11:19:10 -0500 Subject: [PATCH] dwarfvet: fix extra % in log message Mentioned in #1227 --- plugins/dwarfvet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/dwarfvet.cpp b/plugins/dwarfvet.cpp index 920e13d34..a93de8bdc 100644 --- a/plugins/dwarfvet.cpp +++ b/plugins/dwarfvet.cpp @@ -779,7 +779,7 @@ command_result dwarfvet (color_ostream &out, std::vector & paramet for (size_t b =0 ; b < world->buildings.all.size(); b++) { df::building* building = world->buildings.all[b]; if (isActiveAnimalHospital(building)) { - out.print(" at x1: %d, x2%: %d, y1: %d, y2: %d, z: %d\n", building->x1, building->x2, building->y1, building->y2, building->z); + out.print(" at x1: %d, x2: %d, y1: %d, y2: %d, z: %d\n", building->x1, building->x2, building->y1, building->y2, building->z); } } return CR_OK; @@ -832,4 +832,4 @@ DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_chan break; } return CR_OK; -} \ No newline at end of file +}