From b4602f687bd7236f72d8ffca499d7e5161206029 Mon Sep 17 00:00:00 2001 From: Maik Wild Date: Mon, 4 Jun 2018 12:40:31 +0200 Subject: [PATCH] fixed typo in utils --- utils/utils.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.lua b/utils/utils.lua index dee6540d..ce5c7a10 100644 --- a/utils/utils.lua +++ b/utils/utils.lua @@ -34,7 +34,7 @@ Module.get_actor = function() end Module.cast_bool = function(var) - if var then return true else return false + if var then return true else return false end end return Module