Add missing env function to wrap impl

This commit is contained in:
Filip Tibell 2024-02-01 14:43:52 +01:00
parent c653b73f75
commit 1aba727ce6
No known key found for this signature in database

View file

@ -146,6 +146,7 @@ impl<'lua> Functions<'lua> {
("resume", resume.clone()),
("error", lua.globals().get::<_, LuaFunction>("error")?),
("select", lua.globals().get::<_, LuaFunction>("select")?),
("unpack", lua.globals().get::<_, LuaFunction>("unpack")?),
(
"create",
lua.globals()