diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-06-13 20:41:17 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-06-13 20:41:17 +0200 |
commit | bfcda608695b83ce6a3caefceaa79c8e392405d7 (patch) | |
tree | dbd4dcaebbc8157d536553ad03d7afb64031a34b /plugins/fireball/fireball.c | |
parent | 67dc975a29da3abed0834f0fefbeb7c905c16316 (diff) | |
download | dungeon_game-bfcda608695b83ce6a3caefceaa79c8e392405d7.tar.xz |
Add on_create callback for items
Diffstat (limited to 'plugins/fireball/fireball.c')
-rw-r--r-- | plugins/fireball/fireball.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/fireball/fireball.c b/plugins/fireball/fireball.c index fcb1ac1..39e93fb 100644 --- a/plugins/fireball/fireball.c +++ b/plugins/fireball/fireball.c @@ -94,6 +94,7 @@ static struct item fireball_item = { .on_use = &shoot_fireball_item, .on_destroy = NULL, + .on_create = NULL, }; static void shoot_if_has_fireball() |