diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-10-28 20:47:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-10-28 20:47:42 +0300 |
commit | e7482b08370a87941f8d100d1f833f2128cb901c (patch) | |
tree | 93c23722bc7e3b56a9e5eaef1d12e770e0db9902 /src/being | |
parent | 6f496c4919a62edbb73e9adbc3ddd84484afc756 (diff) | |
download | manaverse-e7482b08370a87941f8d100d1f833f2128cb901c.tar.gz manaverse-e7482b08370a87941f8d100d1f833f2128cb901c.tar.bz2 manaverse-e7482b08370a87941f8d100d1f833f2128cb901c.tar.xz manaverse-e7482b08370a87941f8d100d1f833f2128cb901c.zip |
Add missing consts references.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/being.cpp | 6 | ||||
-rw-r--r-- | src/being/being.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index c401f9d0b..578679f42 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -2741,7 +2741,7 @@ void Being::unSetSprite(const unsigned int slot) restrict2 // set sprite id, use color string, reset cards void Being::setSpriteColor(const unsigned int slot, const int id, - std::string color) restrict2 + const std::string &color) restrict2 { if (!charServerHandler || slot >= charServerHandler->maxSprite()) return; @@ -2898,7 +2898,7 @@ void Being::setSpriteColorId(const unsigned int slot, // set sprite id, colors from cards, cards void Being::setSpriteCards(const unsigned int slot, const int id, - CardsList cards) restrict2 + const CardsList &cards) restrict2 { if (!charServerHandler || slot >= charServerHandler->maxSprite()) return; @@ -4902,7 +4902,7 @@ void Being::addItemParticles(const int id, void Being::addItemParticlesCards(const int id, const SpriteDisplay &restrict display, - CardsList cards) restrict2 + const CardsList &cards) restrict2 { const SpriteParticleInfoIter it = mSpriteParticles.find(id); ParticleInfo *restrict pi = nullptr; diff --git a/src/being/being.h b/src/being/being.h index 06264b1d5..581386d3e 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -327,7 +327,7 @@ class Being notfinal : public ActorSprite, void setSpriteColor(const unsigned int slot, const int id, - std::string color) restrict2; + const std::string &color) restrict2; void setSpriteColorId(const unsigned int slot, const int id, @@ -335,7 +335,7 @@ class Being notfinal : public ActorSprite, void setSpriteCards(const unsigned int slot, const int id, - CardsList cards) restrict2; + const CardsList &restrict cards) restrict2; void setSpriteId(const unsigned int slot, const int id) restrict2; @@ -1093,7 +1093,7 @@ class Being notfinal : public ActorSprite, void addItemParticlesCards(const int id, const SpriteDisplay &restrict display, - CardsList cards) restrict2; + const CardsList &restrict cards) restrict2; void removeAllItemsParticles() restrict2; |