Returns the avatar's faced cell update data
| 1941 | |
| 1942 | // Returns the avatar's faced cell update data |
| 1943 | int cPopulationInterface::GetAVDataUpdate(int av_num) |
| 1944 | { |
| 1945 | // If the avatar exists.. |
| 1946 | if (av_num < GetNumAV()) { |
| 1947 | // Returns the avatar's faced cell update data |
| 1948 | return m_world->GetPopulation().GetCell(m_avatars[av_num].av_cell_id).GetCellDataUpdate(); |
| 1949 | } |
| 1950 | return -1; |
| 1951 | } |
| 1952 | |
| 1953 | // Returns the avatar's faced cell territory data |
| 1954 | int cPopulationInterface::GetAVDataTerritory(int av_num) |
nothing calls this directly
no test coverage detected