From 31d98d8f2971ebda68b1c9933d812270155060cf Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 14 May 2001 15:19:07 +0000 Subject: [PATCH] --- source/enemy/nclam.cpp | 5 +++++ source/enemy/nclam.h | 1 + 2 files changed, 6 insertions(+) diff --git a/source/enemy/nclam.cpp b/source/enemy/nclam.cpp index 9b5c2e32c..285cda59c 100644 --- a/source/enemy/nclam.cpp +++ b/source/enemy/nclam.cpp @@ -41,6 +41,11 @@ void CNpcClamEnemy::processEnemyCollision( CThing *thisThing ) // do nothing } +void CNpcClamEnemy::processUserCollision( CThing *thisThing ) +{ + // do nothing +} + bool CNpcClamEnemy::processSensor() { switch( m_sensorFunc ) diff --git a/source/enemy/nclam.h b/source/enemy/nclam.h index 0834f0d50..e3c53227e 100644 --- a/source/enemy/nclam.h +++ b/source/enemy/nclam.h @@ -17,6 +17,7 @@ class CNpcClamEnemy : public CNpcEnemy { protected: + virtual void processUserCollision( CThing *thisThing ); virtual void processEnemyCollision( CThing *thisThing ); virtual bool processSensor(); };