diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-06-09 18:03:40 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-06-09 18:03:40 +0200 |
commit | 741f8c8b7d743e73ae3cb6e01e98c48ebd310275 (patch) | |
tree | 0ae6a819224effec48aa52ddbb1de283fcadea2e /plugins/monster | |
parent | 3d56e56785783edec4daceb0407458c363de7663 (diff) | |
download | dungeon_game-741f8c8b7d743e73ae3cb6e01e98c48ebd310275.tar.xz |
Add read damage overlay
Diffstat (limited to 'plugins/monster')
-rw-r--r-- | plugins/monster/monster.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/monster/monster.c b/plugins/monster/monster.c index 6cb14ff..7124c76 100644 --- a/plugins/monster/monster.c +++ b/plugins/monster/monster.c @@ -63,6 +63,7 @@ __attribute__((constructor)) static void init() .on_spawn = &monster_spawn, .on_remove = NULL, .on_death = &monster_death, + .on_damage = NULL, }; register_air_function((struct generator_function) { |