From 094e795d01750616b35f89e30b372b70cbd18dd1 Mon Sep 17 00:00:00 2001 From: sammyette Date: Sat, 21 Dec 2024 18:30:03 -0400 Subject: [PATCH] fix: type typo (lol) --- moonlight/table_clua.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonlight/table_clua.go b/moonlight/table_clua.go index 75cee49..08fff07 100644 --- a/moonlight/table_clua.go +++ b/moonlight/table_clua.go @@ -42,6 +42,6 @@ func TryTable(v Value) (*Table, bool) { return nil, false } -func (t *Table) setRefIdx(mlr *Runtime, i idx) { +func (t *Table) setRefIdx(mlr *Runtime, i int) { t.refIdx = mlr.state.Ref(i) }