Skip to content

Commit

Permalink
Improve the auto-generated help for combat rounds
Browse files Browse the repository at this point in the history
Wording suggested by soundnfury on Discord.
  • Loading branch information
lmoureaux authored and jwrober committed Jan 21, 2024
1 parent 5366836 commit 2465ca4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion common/helpdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2577,7 +2577,9 @@ char *helptext_unit(char *buf, size_t bufsz, struct player *pplayer,
case ACTRES_BOMBARD:
cat_snprintf(buf, bufsz,
// TRANS: %d is bombard rate.
_(" * %d per turn.\n"), utype->bombard_rate);
PL_(" * %d round per action.\n",
" * %d rounds per action.\n", utype->bombard_rate),
utype->bombard_rate);
cat_snprintf(buf, bufsz,
// TRANS: talking about bombard
_(" * These attacks will only damage (never kill)"
Expand Down

0 comments on commit 2465ca4

Please sign in to comment.