diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-06-14 20:58:57 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-06-14 20:58:57 +0200 |
commit | 0f4153099c2a0d8fa4480dcd690820976df4a939 (patch) | |
tree | 46db76492cc640af2c48be8fcfe3e5d2ec96e7d6 /plugins/fireball | |
parent | 90114b876b9e023111dd17b455f82972fd6d5c1d (diff) | |
download | dungeon_game-0f4153099c2a0d8fa4480dcd690820976df4a939.tar.xz |
Add mapgen contexts
Diffstat (limited to 'plugins/fireball')
-rw-r--r-- | plugins/fireball/fireball.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/fireball/fireball.c b/plugins/fireball/fireball.c index 39e93fb..a0e9a13 100644 --- a/plugins/fireball/fireball.c +++ b/plugins/fireball/fireball.c @@ -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; } |