updated dispenser -- can summon mriceblock, snowball, bouncing_snowball and mrbomb now
[supertux.git] / src / badguy / jumpy.cpp
index 4ac9960..f7abad9 100644 (file)
@@ -8,7 +8,7 @@ Jumpy::Jumpy(LispReader& reader)
 {
   reader.read_float("x", start_position.x);
   reader.read_float("y", start_position.y);
-  bbox.set_size(32, 32);
+  bbox.set_size(31.8, 31.8);
   sprite = sprite_manager->create("jumpy");
 }
 
@@ -24,7 +24,7 @@ Jumpy::write(LispWriter& writer)
 }
 
 HitResponse
-Jumpy::collision_solid(GameObject& other, const CollisionHit& hit)
+Jumpy::collision_solid(GameObject& , const CollisionHit& hit)
 {
   // hit floor?
   if(hit.normal.y < -.5) {