summaryrefslogtreecommitdiff
path: root/src/resources/basicstat.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-06-30 02:16:34 +0300
committerAndrei Karas <akaras@inbox.ru>2016-06-30 02:16:34 +0300
commit3589bb9fa0800650accc124ea6820d5834c27e43 (patch)
tree1d3dd3db4dd02ef90ae0fdb2a212afac01aa15a6 /src/resources/basicstat.h
parent1afa5bf3c437150dd18ad4e8d435072b103283c3 (diff)
downloadplus-3589bb9fa0800650accc124ea6820d5834c27e43.tar.gz
plus-3589bb9fa0800650accc124ea6820d5834c27e43.tar.bz2
plus-3589bb9fa0800650accc124ea6820d5834c27e43.tar.xz
plus-3589bb9fa0800650accc124ea6820d5834c27e43.zip
Dont add basic stats into item attributes.
From now need add all stats to item attributes in xml file.
Diffstat (limited to 'src/resources/basicstat.h')
-rw-r--r--src/resources/basicstat.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/resources/basicstat.h b/src/resources/basicstat.h
index a57581ffe..14ad90f03 100644
--- a/src/resources/basicstat.h
+++ b/src/resources/basicstat.h
@@ -33,17 +33,14 @@ struct BasicStat final
{
BasicStat(const AttributesT attr0,
const std::string &tag0,
- const std::string &name0,
- const std::string &format0) :
+ const std::string &name0) :
tag(tag0),
name(name0),
- format(format0),
attr(attr0)
{}
std::string tag;
std::string name;
- std::string format;
AttributesT attr;
};