]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/script/common/c_packer.h
Use native packer to transfer globals into async env(s)
[dragonfireclient.git] / src / script / common / c_packer.h
index ee732be860f9458811741212f687c9fdf27a75e4..fe072c10aeebb014ee62d80adb40ae36e502f7ee 100644 (file)
@@ -119,7 +119,7 @@ void script_register_packer(lua_State *L, const char *regname,
 // Pack a Lua value
 PackedValue *script_pack(lua_State *L, int idx);
 // Unpack a Lua value (left on top of stack)
-// Note that this may modify the PackedValue, you can't reuse it!
+// Note that this may modify the PackedValue, reusability is not guaranteed!
 void script_unpack(lua_State *L, PackedValue *val);
 
 // Dump contents of PackedValue to stdout for debugging