From bee0c15ba0fe7f491ea33ad98fc5a0f523e8b2f9 Mon Sep 17 00:00:00 2001 From: myk002 Date: Sat, 8 May 2021 07:34:29 -0700 Subject: [PATCH] yeah, this isn't lua (though "and" instead of "&&" seems to work in gcc!) --- plugins/blueprint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/blueprint.cpp b/plugins/blueprint.cpp index 24d8df26c..38a03bff7 100644 --- a/plugins/blueprint.cpp +++ b/plugins/blueprint.cpp @@ -744,7 +744,7 @@ static void print_help() command_result blueprint(color_ostream &out, vector ¶meters) { - if (parameters.size() >= 1 and parameters[0] == "gui") + if (parameters.size() >= 1 && parameters[0] == "gui") { return do_gui(parameters) ? CR_OK : CR_FAILURE; }