summaryrefslogtreecommitdiff
path: root/src/localplayer.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2010-01-13 15:33:49 +0000
committerJared Adams <jaxad0127@gmail.com>2010-01-13 15:33:49 +0000
commit938e215a848a65281be0fc5cda10dd0872c846a4 (patch)
tree7b3727bf9f6f2b7a024411e3f599148d41e9258e /src/localplayer.h
parenta40e07c2c86aff20c3b5529228bc519f9cc4c61d (diff)
downloadmana-client-938e215a848a65281be0fc5cda10dd0872c846a4.tar.gz
mana-client-938e215a848a65281be0fc5cda10dd0872c846a4.tar.bz2
mana-client-938e215a848a65281be0fc5cda10dd0872c846a4.tar.xz
mana-client-938e215a848a65281be0fc5cda10dd0872c846a4.zip
Supress level up notifications when starting
Diffstat (limited to 'src/localplayer.h')
-rw-r--r--src/localplayer.h4
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);