| 68 | |
| 69 | |
| 70 | MapHandler::~MapHandler() { |
| 71 | mapHandlers.erase(objName); |
| 72 | |
| 73 | lua_State* L = LuaServer::GetL(); |
| 74 | if (L == NULL) { |
| 75 | return; |
| 76 | } |
| 77 | luaL_unref(L, LUA_REGISTRYINDEX, luaRef); |
| 78 | } |
| 79 | |
| 80 | |
| 81 | bool MapHandler::handle(bz_ApiString objToken, bz_CustomMapObjectInfo* info) { |
nothing calls this directly
no test coverage detected