Skip to content

Commit

Permalink
fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
elsongabriel committed Jun 25, 2024
1 parent ae2f0dd commit 0c93647
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/game/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10667,14 +10667,14 @@ Title Game::getTitleByName(const std::string &name) {
return {};
}

const std::map<uint8_t, std::string> &Game::getBlessingNames() const {
const std::map<uint8_t, std::string> &Game::getBlessingNames() {
return m_blessingNames;
}

const std::unordered_map<uint16_t, std::string> &Game::getHirelingSkills() const {
const std::unordered_map<uint16_t, std::string> &Game::getHirelingSkills() {
return m_hirelingSkills;
}

const std::unordered_map<uint16_t, std::string> &Game::getHirelingOutfits() const {
const std::unordered_map<uint16_t, std::string> &Game::getHirelingOutfits() {
return m_hirelingOutfits;
}
6 changes: 3 additions & 3 deletions src/game/game.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -736,9 +736,9 @@ class Game {
return m_summaryCategories[type];
}

std::map<uint8_t, std::string> getBlessingNames();
std::unordered_map<uint16_t, std::string> getHirelingSkills();
std::unordered_map<uint16_t, std::string> getHirelingOutfits();
const std::map<uint8_t, std::string> &getBlessingNames();
const std::unordered_map<uint16_t, std::string> &getHirelingSkills();
const std::unordered_map<uint16_t, std::string> &getHirelingOutfits();

private:
std::map<uint16_t, Achievement> m_achievements;
Expand Down

0 comments on commit 0c93647

Please sign in to comment.