From ac60402024ecafb83eb2dd7294d463eeab65cab5 Mon Sep 17 00:00:00 2001 From: Robert Zenz Date: Sun, 15 Feb 2015 17:41:12 +0100 Subject: [PATCH] Fixed another possible bug. --- utils/tableutil.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/tableutil.lua b/utils/tableutil.lua index 9644643..df01c66 100644 --- a/utils/tableutil.lua +++ b/utils/tableutil.lua @@ -49,7 +49,7 @@ function tableutil.clone(table) if value ~= table then clone[tableutil.clone(key)] = tableutil.clone(value) else - clone[key] = value + clone[tableutil.clone(key)] = clone end end