Yeti: In the second phase, drop stalactites in pairs.
[supertux.git] / src / badguy / yeti.cpp
index 97891c7..f7f8a4d 100644 (file)
@@ -255,8 +255,8 @@ Yeti::drop_stalactite()
         }
       }
       else { /* if (hitpoints < 3) */
-        // drop every 3rd stalactite
-        if(((((int)stalactite->get_pos().x + 16) / 32) % 3) == (stomp_count % 3)) {
+        // drop every 3rd pair of stalactites
+        if(((((int)stalactite->get_pos().x + 16) / 64) % 3) == (stomp_count % 3)) {
           stalactite->start_shaking();
         }
       }