diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-01-13 15:33:49 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-01-13 15:33:49 +0000 |
commit | 938e215a848a65281be0fc5cda10dd0872c846a4 (patch) | |
tree | 7b3727bf9f6f2b7a024411e3f599148d41e9258e /src/localplayer.h | |
parent | a40e07c2c86aff20c3b5529228bc519f9cc4c61d (diff) | |
download | mana-938e215a848a65281be0fc5cda10dd0872c846a4.tar.gz mana-938e215a848a65281be0fc5cda10dd0872c846a4.tar.bz2 mana-938e215a848a65281be0fc5cda10dd0872c846a4.tar.xz mana-938e215a848a65281be0fc5cda10dd0872c846a4.zip |
Supress level up notifications when starting
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); |