chore: remove printing for hilbish global type

midnight-edition
sammyette 2024-12-22 01:19:15 -04:00
parent 287a983730
commit 762066022d
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 1 deletions

2
lua.go
View File

@ -52,7 +52,7 @@ func luaInit() {
*/ */
// Add more paths that Lua can require from // Add more paths that Lua can require from
_, err := l.DoString("print(type(hilbish)); package.path = package.path .. " + requirePaths) _, err := l.DoString("package.path = package.path .. " + requirePaths)
if err != nil { if err != nil {
fmt.Fprintln(os.Stderr, err) fmt.Fprintln(os.Stderr, err)
fmt.Fprintln(os.Stderr, "Could not add Hilbish require paths! Libraries will be missing. This shouldn't happen.") fmt.Fprintln(os.Stderr, "Could not add Hilbish require paths! Libraries will be missing. This shouldn't happen.")