| 571 | |
| 572 | |
| 573 | int LuaHandle::ScriptCanUseCallIn(lua_State* L) { |
| 574 | const std::string ciName = lua_tostring(L, 1); |
| 575 | lua_pushboolean(L, L2H(L)->CanUseCallIn(ciName)); |
| 576 | return 1; |
| 577 | } |
| 578 | |
| 579 | |
| 580 | int LuaHandle::ScriptSetCallIn(lua_State* L) { |
nothing calls this directly
no test coverage detected