diff options
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index 52e3597e..fe3e3d98 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -327,7 +327,7 @@ class LocalPlayer : public Player int getAttributeBase(int num) { return mAttributeBase[num]; } - void setAttributeBase(int num, int value); + void setAttributeBase(int num, int value, bool notify = true); int getAttributeEffective(int num) { return mAttributeEffective[num]; } @@ -349,7 +349,7 @@ class LocalPlayer : public Player void setSkillPoints(int points); - void setExperience(int skill, int current, int next); + void setExperience(int skill, int current, int next, bool notify = true); std::pair<int, int> getExperience(int skill); |