From 3342203069468c826d2f53b7663ad789d737c822 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 26 Jul 2001 15:02:55 +0000 Subject: [PATCH] --- source/hazard/hrweight.h | 2 +- source/hazard/hrwheel.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/hazard/hrweight.h b/source/hazard/hrweight.h index b9f1fa99a..944d29457 100644 --- a/source/hazard/hrweight.h +++ b/source/hazard/hrweight.h @@ -25,7 +25,7 @@ public: void render(); DVECTOR const &getWheelPos() {return( m_wheelPos );} void setTriggered() {m_triggered = true;} - CRECT const *getThinkBBox() {return( CThing::getThinkBBox() );} + bool alwaysThink() {return(true);} protected: virtual void collidedWith(CThing *_thisThing); void setWaypoints( sThingHazard *ThisHazard ); diff --git a/source/hazard/hrwheel.h b/source/hazard/hrwheel.h index 3fad31d6b..173bb3eca 100644 --- a/source/hazard/hrwheel.h +++ b/source/hazard/hrwheel.h @@ -29,7 +29,7 @@ public: DVECTOR const &getWheelPos() {return( m_wheelPos );} void linkToWeight( CNpcRisingWeightHazard *weight ) {m_weight = weight;} void render(); - CRECT const *getThinkBBox() {return( CThing::getThinkBBox() );} + bool alwaysThink() {return(true);} protected: void setWaypoints( sThingHazard *ThisHazard ); void collidedWith(CThing *_thisThing);