Changed Yeti behaviour. You must stun him (jump on him) when is under a falling stala...
[supertux.git] / src / badguy / stalactite.cpp
index 1a0b367..b562ff2 100644 (file)
@@ -99,4 +99,13 @@ Stalactite::deactivate()
     remove_me();
 }
 
+bool
+Stalactite::is_harmful()
+{
+    if (state == STALACTITE_SQUISHED)
+        return false;
+    else
+        return true;
+}
+
 IMPLEMENT_FACTORY(Stalactite, "stalactite")