diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-15 12:53:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-15 13:04:21 +0300 |
commit | 8ef332195f82d30f70435b69ba485640a19d80ed (patch) | |
tree | 589dc857a56faede78119142f077c29e1963916f /src/being/being.cpp | |
parent | 5d7a02cee16478f23488495b3d031013eacea108 (diff) | |
download | plus-8ef332195f82d30f70435b69ba485640a19d80ed.tar.gz plus-8ef332195f82d30f70435b69ba485640a19d80ed.tar.bz2 plus-8ef332195f82d30f70435b69ba485640a19d80ed.tar.xz plus-8ef332195f82d30f70435b69ba485640a19d80ed.zip |
Rename being board into sell board.
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 004e728c6..60b87914c 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -175,7 +175,7 @@ Being::Being(const int id, mSpriteHide(new int[20]), mSpriteDraw(new int[20]), mComment(), - mBoard(), + mSellBoard(), mPets(), mOwner(nullptr), mSpecialParticle(nullptr), @@ -3531,10 +3531,10 @@ void Being::setChat(ChatObject *const obj) mChat = obj; } -void Being::setBoard(const std::string &text) +void Being::setSellBoard(const std::string &text) { mShop = !text.empty(); - mBoard = text; + mSellBoard = text; updateName(); } |