small fixes (timing and animation) on nolok
[supertux.git] / src / trigger / secretarea_trigger.h
index d16377c..945c061 100644 (file)
@@ -8,8 +8,6 @@
 #include "app/globals.h"
 #include "timer.h"
 
-#define MESSAGE_TIME 3
-
 class SecretAreaTrigger : public TriggerBase, public Serializable
 {
 public:
@@ -24,6 +22,7 @@ public:
 private:
   std::string message;
   Timer2 message_timer;
+  bool message_displayed;
 };
 
 #endif