Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/client/const.h
Original file line number Diff line number Diff line change
Expand Up @@ -559,9 +559,10 @@ namespace Otc
GameColorizedLootValue = 121,
GameAllowPreWalk = 122,
GamePlayerFamiliars = 123,
-- 124,
GameTileAddThingWithStackpos = 124,
GameMapCache = 125,
GameForgeSkillStats = 126,
GameCharacterSkillStats = 127,
LastGameFeature
};

Expand Down
2 changes: 2 additions & 0 deletions src/client/localplayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@
uint8_t getSoul() { return m_soul; }
uint8_t getLevelPercent() { return m_levelPercent; }
uint8_t getHarmony() { return m_harmony; }
bool getSerene() { return m_serene; }
size_t getPreWalkingSize() { return m_preWalks.size(); }

uint16_t getLevel() { return m_level; }
uint16_t getSkillLevel(const Otc::Skill skill) { return m_skills[skill].level; }
Expand Down