From 06af0d4ec4a4efdc3bdb9c03c05523557f8a3262 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 19 Jul 2001 14:57:41 +0000 Subject: [PATCH] --- source/triggers/tgarygo.h | 1 + source/triggers/tggleft.h | 2 ++ source/triggers/tggright.h | 2 ++ source/triggers/tgstop.h | 1 + 4 files changed, 6 insertions(+) diff --git a/source/triggers/tgarygo.h b/source/triggers/tgarygo.h index a9f830cad..eba5f32ae 100644 --- a/source/triggers/tgarygo.h +++ b/source/triggers/tgarygo.h @@ -42,6 +42,7 @@ class CGaryStartTrigger : public CTrigger { public: virtual void setGary( CNpcGaryFriend *gary ) {m_gary = gary;} + bool alwaysThink() {return(true);} protected: virtual void collidedWith(CThing *_thisThing); diff --git a/source/triggers/tggleft.h b/source/triggers/tggleft.h index af2df5129..af0897ffb 100644 --- a/source/triggers/tggleft.h +++ b/source/triggers/tggleft.h @@ -36,6 +36,8 @@ class CGaryGoLeftTrigger : public CTrigger { +public: + bool alwaysThink() {return(true);} protected: virtual void collidedWith(CThing *_thisThing); }; diff --git a/source/triggers/tggright.h b/source/triggers/tggright.h index 07633e669..e6bb3e195 100644 --- a/source/triggers/tggright.h +++ b/source/triggers/tggright.h @@ -36,6 +36,8 @@ class CGaryGoRightTrigger : public CTrigger { +public: + bool alwaysThink() {return(true);} protected: virtual void collidedWith(CThing *_thisThing); }; diff --git a/source/triggers/tgstop.h b/source/triggers/tgstop.h index 90c89343b..f4cff3f0d 100644 --- a/source/triggers/tgstop.h +++ b/source/triggers/tgstop.h @@ -38,6 +38,7 @@ class CGaryStopTrigger : public CTrigger { public: void init(); + bool alwaysThink() {return(true);} protected: void collidedWith(CThing *_thisThing);