From e1126ca2c1577b50c375a0266747350159340f03 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Mon, 29 Jul 2019 22:00:51 +0200 Subject: Use operators .. and ..= instead of Format where appropriate --- Script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Script.c') diff --git a/Script.c b/Script.c index f958a10..681e197 100644 --- a/Script.c +++ b/Script.c @@ -1603,7 +1603,7 @@ func AdaptorFactory(args, int entryIndex, int entryColumn) min = true; } } - text = Format("%s %s", Format(entry[DT_Menu_Entry_Text], val), ["{{MN7I:4}}", "{{MN7I:4}}"][min]); + text = Format(entry[DT_Menu_Entry_Text], val) .. " " .. ["{{MN7I:4}}", "{{MN7I:4}}"][min]; ExtraIcon(text, icon, [MN7I, 3, max && RGB(128, 128, 128)]); defaultMsgboardText = "$EnterNumber$"; } -- cgit v1.2.3-54-g00ecf