| 1604 | } |
| 1605 | |
| 1606 | void showMapMenu(MapClientSession &sess) |
| 1607 | { |
| 1608 | // if has_location == true, then player cannot be more than 400 |
| 1609 | // units away from pos or window will close |
| 1610 | bool has_location = false; |
| 1611 | glm::vec3 location = sess.m_ent->m_entity_data.m_pos; |
| 1612 | QString msg_body = createMapMenu(); |
| 1613 | sendContactDialogClose(sess); |
| 1614 | showMapXferList(sess, has_location, location, msg_body); |
| 1615 | } |
| 1616 | |
| 1617 | void setAlignment(Entity &e, QString align) |
| 1618 | { |
no test coverage detected