]> git.lizzy.rs Git - dungeon_game.git/blobdiff - plugins/fireball/fireball.c
Add mapgen contexts
[dungeon_game.git] / plugins / fireball / fireball.c
index 39e93fb586909d7c8429e6493ad3533b0f2d9713..a0e9a13fa8aa9d73b7ca7bd8d2cd285806fdad66 100644 (file)
@@ -33,8 +33,6 @@ static void fireball_step(struct entity *self, struct entity_step_data stepdata)
 
 static void fireball_collide(struct entity *self, int x, int y)
 {
-       (void) x, y;
-
        self->remove = true;
 }
 
@@ -82,8 +80,6 @@ static void shoot_fireball()
 
 static bool shoot_fireball_item(struct itemstack *stack)
 {
-       (void) stack;
-
        shoot_fireball();
        return true;
 }