From 9f3e56ef5aa3978c33dba428d6a364e9ce0d7091 Mon Sep 17 00:00:00 2001 From: urnati Date: Sun, 30 Dec 2018 12:50:12 -0500 Subject: [PATCH] Fixed a typo in Utils... --- Titan/TitanUtils.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Titan/TitanUtils.lua b/Titan/TitanUtils.lua index c540cc4..176b904 100644 --- a/Titan/TitanUtils.lua +++ b/Titan/TitanUtils.lua @@ -332,7 +332,7 @@ VAR: a - a value VAR: b - a value OUT: value - value of max (a, b) --]] -function TitanUtils_Max(v) +function TitanUtils_Max(a, b) if (a and b) then return TitanUtils_Ternary((a > b), a, b); --- return ( a > b ) and a or b -- 1.7.9.5