diff --git a/ly-core/src/root.zig b/ly-core/src/root.zig index 7c1322a..ad32484 100644 --- a/ly-core/src/root.zig +++ b/ly-core/src/root.zig @@ -158,7 +158,11 @@ pub fn LuaParser(comptime Struct: type) type { var lua: *Lua = try .init(allocator); defer lua.deinit(); - lua.openLibs(); + lua.openBase(); + lua.openBit(); + lua.openMath(); + lua.openString(); + lua.openTable(); // convert to sentinel terminated slice const spath: [:0]const u8 = try allocator.dupeSentinel(u8, path, 0);