From 9868c494c74fd35adfec8dd2a9720329e082cc44 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Mon, 29 Jul 2019 22:00:56 +0200 Subject: Use operators .. and ..= instead of Format where appropriate --- Script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Script.c b/Script.c index 9fe77c6..394c454 100644 --- a/Script.c +++ b/Script.c @@ -1725,7 +1725,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