diff options
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/being.h b/src/being.h index 91cafa69a..04cee8bcc 100644 --- a/src/being.h +++ b/src/being.h @@ -50,7 +50,8 @@ #define STATUS_EFFECTS 32 #define SPEECH_TIME 500 -#define SPEECH_MAX_TIME 1000 +#define SPEECH_MIN_TIME 200 +#define SPEECH_MAX_TIME 800 class AnimatedSprite; class BeingCacheEntry; @@ -239,7 +240,7 @@ class Being : public ActorSprite, public ConfigListener * @param text The text that should appear. * @param time The amount of time the text should stay in milliseconds. */ - void setSpeech(const std::string &text, int time = 500); + void setSpeech(const std::string &text, int time = 0); /** * Puts a damage bubble above this being. |