diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-03-02 03:47:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-03-02 05:52:11 +0300 |
commit | 93257ccd9617dbc37784076d54c80c915722397d (patch) | |
tree | 66b5bd0b47e55e575f25c1debe95c3eef401c607 /src/net/manaserv/attributes.cpp | |
parent | b55fdde5bcc4b995585b757f2b060289477b2148 (diff) | |
download | manaverse-93257ccd9617dbc37784076d54c80c915722397d.tar.gz manaverse-93257ccd9617dbc37784076d54c80c915722397d.tar.bz2 manaverse-93257ccd9617dbc37784076d54c80c915722397d.tar.xz manaverse-93257ccd9617dbc37784076d54c80c915722397d.zip |
Fix compilation with manaserv.
Diffstat (limited to 'src/net/manaserv/attributes.cpp')
-rw-r--r-- | src/net/manaserv/attributes.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/manaserv/attributes.cpp b/src/net/manaserv/attributes.cpp index c032b6bb8..662032e29 100644 --- a/src/net/manaserv/attributes.cpp +++ b/src/net/manaserv/attributes.cpp @@ -73,16 +73,16 @@ namespace Attributes static unsigned int attributeMinimum = 0; static unsigned int attributeMaximum = 0; - unsigned int getCreationPoints() const + unsigned int getCreationPoints() { return creationPoints; } - unsigned int getAttributeMinimum() const + unsigned int getAttributeMinimum() { return attributeMinimum; } - unsigned int getAttributeMaximum() const + unsigned int getAttributeMaximum() { return attributeMaximum; } - std::vector<std::string>& getLabels() const + std::vector<std::string>& getLabels() { return attributeLabels; } /** |