[Quest API] Add back removed lua class properties (#1742)

Fixes regression from 7b6decae
This commit is contained in:
hg
2021-11-12 21:16:39 -05:00
committed by GitHub
parent 1a69218045
commit 3c87480553
5 changed files with 11 additions and 1 deletions
+2
View File
@@ -326,6 +326,8 @@ luabind::scope lua_register_packet() {
.def(luabind::constructor<>())
.def(luabind::constructor<int,int>())
.def(luabind::constructor<int,int,bool>())
.property("null", &Lua_Packet::Null)
.property("valid", &Lua_Packet::Valid)
.def("GetOpcode", &Lua_Packet::GetOpcode)
.def("GetRawOpcode", &Lua_Packet::GetRawOpcode)
.def("GetSize", &Lua_Packet::GetSize)