Fix borked lua state import

This commit is contained in:
William Venner 2021-10-25 17:15:54 +01:00
parent 6ef267d2ed
commit 3ec09cd995
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "gmod"
version = "7.0.1"
version = "7.0.2"
authors = ["William Venner <william@venner.io>"]
edition = "2018"
license = "MIT"

View File

@ -236,7 +236,7 @@ impl LuaShared {
lua_next: find_symbol!("lua_next"),
lua_topointer: find_symbol!("lua_topointer"),
lua_newuserdata: find_symbol!("lua_newuserdata"),
lual_newmetatable: find_symbol!("lual_newmetatable"),
lual_newmetatable: find_symbol!("luaL_newmetatable"),
}
}
}