From 80852c80090a9300aed16bbab730e213bd659f70 Mon Sep 17 00:00:00 2001 From: Dino Date: Fri, 26 Dec 2025 21:59:30 -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 cd96981a60..3ed8624cc8 100644 --- a/tools/ruleutil/rulesave.c +++ b/tools/ruleutil/rulesave.c @@ -1812,7 +1812,7 @@ static bool save_game_ruleset(const char *filename, const char *name) secfile_insert_str(sfile, counter_behavior_name(pcounter->type), "%s.type", path); if ((NULL != pcounter->helptext) && (0 < strvec_size(pcounter->helptext))) { - save_strvec(sfile, pcounter->helptext, "%s.helptext", path); + save_strvec(sfile, pcounter->helptext, path, "helptext"); } } counters_re_iterate_end; -- 2.31.0