From 062f40e9e51baabff8d7a17884a332445edce68d Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Tue, 1 Mar 2022 19:29:30 -0400 Subject: [PATCH] fix: push hilbish.which return value properly --- api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.go b/api.go index 2aaa8f1..95f9608 100644 --- a/api.go +++ b/api.go @@ -343,6 +343,6 @@ func hlwhich(L *lua.LState) int { return 1 } - l.Push(path) + l.Push(lua.LString(path)) return 1 }