From 069fe0cfd4d00097ad43291bbe8c6473edd4d05a Mon Sep 17 00:00:00 2001 From: Sveinung Kvilhaugsvik Date: Thu, 20 May 2021 15:51:31 +0200 Subject: [PATCH] autohelp: fix action section headline. The bullet point were printed where the action name should be and vice versa. See osdn #42335 --- client/helpdata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/helpdata.c b/client/helpdata.c index 670965b294..9fd79c3c46 100644 --- a/client/helpdata.c +++ b/client/helpdata.c @@ -2385,7 +2385,7 @@ char *helptext_unit(char *buf, size_t bufsz, struct player *pplayer, cat_snprintf(buf, bufsz, /* TRANS: %s is the action's ruleset defined ui name */ _("%s Can do the action \'%s\'.\n"), - action_id_name_translation(act), BULLET); + BULLET, action_id_name_translation(act)); switch (action_id_get_target_kind(act)) { case ATK_SELF: -- 2.30.2