From 287a983730e426b969e8a50b2ab486e27d06d362 Mon Sep 17 00:00:00 2001 From: sammyette Date: Sun, 22 Dec 2024 01:18:54 -0400 Subject: [PATCH] feat: implement dofile on midnight --- moonlight/util_clua.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonlight/util_clua.go b/moonlight/util_clua.go index 2729cbb..7ce6b0c 100644 --- a/moonlight/util_clua.go +++ b/moonlight/util_clua.go @@ -8,6 +8,6 @@ func (mlr *Runtime) DoString(code string) (Value, error) { } func (mlr *Runtime) DoFile(filename string) error { - //return mlr.state.DoFile(filename) + return mlr.state.DoFile(filename) return nil }