Quantcast

Wipe the temporary table when saving too

Adrian L Lange [10-23-14 - 19:19]
Wipe the temporary table when saving too
Filename
Config.lua
diff --git a/Config.lua b/Config.lua
index 6b06a76..bd187be 100644
--- a/Config.lua
+++ b/Config.lua
@@ -72,6 +72,8 @@ function Panel:okay()
 	for key, value in next, temporary do
 		QuickQuestDB[key] = value
 	end
+
+	table.wipe(temporary)
 end

 function Panel:cancel()