diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-16 02:19:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-16 02:19:08 +0300 |
commit | 19b82b4dad9b66418a4e7d0ed0ba23d0cab17216 (patch) | |
tree | 0f82530b8e11d70923e96d5ba17107f92921365f /src/being/being.h | |
parent | b49d05166ac67ed0ef189b1e3859573108843db1 (diff) | |
download | mv-19b82b4dad9b66418a4e7d0ed0ba23d0cab17216.tar.gz mv-19b82b4dad9b66418a4e7d0ed0ba23d0cab17216.tar.bz2 mv-19b82b4dad9b66418a4e7d0ed0ba23d0cab17216.tar.xz mv-19b82b4dad9b66418a4e7d0ed0ba23d0cab17216.zip |
Remove default parameters from Being::setSpeech.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/being/being.h b/src/being/being.h index feb686740..64a193c46 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -185,9 +185,7 @@ class Being notfinal : public ActorSprite, * @param text The text that should appear. * @param time The amount of time the text should stay in milliseconds. */ - void setSpeech(const std::string &restrict text, - const std::string &restrict channel = "", - int time = 0) restrict2; + void setSpeech(const std::string &restrict text) restrict2; /** * Puts a damage bubble above this being. |