willox / hash.js

Horrific chat bot that was once used in the "Garry's Mod Coders" Steam group chat
http://steamcommunity.com/groups/glua
Creative Commons Zero v1.0 Universal
3 stars 0 forks source link

cookie doesn't store upvalues #133

Open bmwalters opened 8 years ago

bmwalters commented 8 years ago

test code:

local myUpvalue = 10
function functionWithUpvalue() print(myUpvalue) end -- 10

cookie.functionWithUpvalue = functionWithUpvalue
cookie.Save()

-- .restart

cookie.functionWithUpvalue() -- (nil)