From 10fe568f0888fe51b8f2570eb93e1cdc96f227f8 Mon Sep 17 00:00:00 2001 From: nikolas Date: Wed, 7 Aug 2019 15:15:53 -0400 Subject: Fix: typo in ScriptList::Valuate param error (#7687) --- src/script/api/script_list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/api/script_list.cpp b/src/script/api/script_list.cpp index 13545c422..fe747028f 100644 --- a/src/script/api/script_list.cpp +++ b/src/script/api/script_list.cpp @@ -845,7 +845,7 @@ SQInteger ScriptList::Valuate(HSQUIRRELVM vm) int nparam = sq_gettop(vm) - 1; if (nparam < 1) { - return sq_throwerror(vm, "You need to give a least a Valuator as parameter to ScriptList::Valuate"); + return sq_throwerror(vm, "You need to give at least a Valuator as parameter to ScriptList::Valuate"); } /* Make sure the valuator function is really a function, and not any -- cgit v1.2.3-54-g00ecf