diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-04-23 22:15:26 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-04-25 15:03:55 -0600 |
commit | 88524a71b8d3727b5ad4a8a60e146fd8e786b7ad (patch) | |
tree | 1ae5d143a22d8a94490e76994e9a253648a21651 /src/gui/statuswindow.cpp | |
parent | 33481831b44f7e6fded6b9be29f1ea56bf74bfa2 (diff) | |
download | mana-88524a71b8d3727b5ad4a8a60e146fd8e786b7ad.tar.gz mana-88524a71b8d3727b5ad4a8a60e146fd8e786b7ad.tar.bz2 mana-88524a71b8d3727b5ad4a8a60e146fd8e786b7ad.tar.xz mana-88524a71b8d3727b5ad4a8a60e146fd8e786b7ad.zip |
Make ManaServ player stats softcoded
A new stats.xml file is parsed for player stats for ManaServ. The old hardcoded
stats remain as backup.
Reviewed-by: Bertram
Diffstat (limited to 'src/gui/statuswindow.cpp')
-rw-r--r-- | src/gui/statuswindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/statuswindow.cpp b/src/gui/statuswindow.cpp index 498a4523..2439a213 100644 --- a/src/gui/statuswindow.cpp +++ b/src/gui/statuswindow.cpp @@ -283,7 +283,8 @@ void StatusWindow::setPointsNeeded(int id, int needed) } void StatusWindow::addAttribute(int id, const std::string &name, - bool modifiable) + bool modifiable, + const std::string &description) { AttrDisplay *disp; |