fix: dont print types of args in appendPath

windows-fixes
TorchedSammy 2022-03-06 17:19:47 -04:00
parent 539cf402ca
commit ba67278fad
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 0 additions and 1 deletions

1
api.go
View File

@ -265,7 +265,6 @@ func hlalias(L *lua.LState) int {
func hlappendPath(L *lua.LState) int {
// check if dir is a table or a string
arg := L.Get(1)
fmt.Println(arg.Type())
if arg.Type() == lua.LTTable {
arg.(*lua.LTable).ForEach(func(k lua.LValue, v lua.LValue) {
appendPath(v.String())