| 329 | } |
| 330 | |
| 331 | void ActionBar::essentialBarClick(uint8_t index) { |
| 332 | m_player->inventory()->selectActionBarLocation((EssentialItem)index); |
| 333 | } |
| 334 | |
| 335 | void ActionBar::swapCustomBar() { |
| 336 | m_player->inventory()->setCustomBarGroup((m_player->inventory()->customBarGroup() + 1) % m_player->inventory()->customBarGroups()); |
nothing calls this directly
no test coverage detected