Returns the avatar's faced cell org id data
| 1886 | |
| 1887 | // Returns the avatar's faced cell org id data |
| 1888 | int cPopulationInterface::GetAVFacedDataOrgID(int av_num) |
| 1889 | { |
| 1890 | // If the avatar exists.. |
| 1891 | if (av_num < GetNumAV()) { |
| 1892 | // Returns the avatar's faced cell org id data |
| 1893 | return m_world->GetPopulation().GetCell(m_avatars[av_num].av_faced_cell).GetCellDataOrgID(); |
| 1894 | } |
| 1895 | return -1; |
| 1896 | } |
| 1897 | |
| 1898 | // Returns the avatar's faced cell update data |
| 1899 | int cPopulationInterface::GetAVFacedDataUpdate(int av_num) |
nothing calls this directly
no test coverage detected