From a195e77ff2d6c40edfd6daa8693bd4685d4d26b3 Mon Sep 17 00:00:00 2001 From: Dino Date: Fri, 26 Dec 2025 22:09:28 -0500 Subject: [PATCH] ruledit/ruleup: fix bug saving helptext for Counters HR #1844 --- tools/ruleutil/rulesave.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ruleutil/rulesave.c b/tools/ruleutil/rulesave.c index 812a5d07cf..c9475a950d 100644 --- a/tools/ruleutil/rulesave.c +++ b/tools/ruleutil/rulesave.c @@ -1840,7 +1840,7 @@ static bool save_game_ruleset(const char *filename, const char *name) if (pcounter->helptext != nullptr && strvec_size(pcounter->helptext) > 0) { - save_strvec(sfile, pcounter->helptext, "%s.helptext", path); + save_strvec(sfile, pcounter->helptext, path, "helptext"); } } counters_re_iterate_end; -- 2.31.0