"1 trees" to "1 tree(s)"

develop
Myk Taylor 2023-01-11 20:02:13 -08:00
parent 1725a51400
commit 6e4a994364
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -201,7 +201,7 @@ DFhackCExport command_result plugin_onupdate(color_ostream &out) {
if (is_enabled && world->frame_counter - cycle_timestamp >= CYCLE_TICKS) {
int32_t designated = do_cycle(out);
if (0 < designated)
out.print("autochop: designated %d trees for chopping\n", designated);
out.print("autochop: designated %d tree(s) for chopping\n", designated);
}
return CR_OK;
}