diff options
Diffstat (limited to 'plugins/cherry/cherry.c')
-rw-r--r-- | plugins/cherry/cherry.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/cherry/cherry.c b/plugins/cherry/cherry.c index 1b0ac8a..96f0a2a 100644 --- a/plugins/cherry/cherry.c +++ b/plugins/cherry/cherry.c @@ -3,6 +3,7 @@ #include "../game/game.h" #include "../score/score.h" #include "../inventory/inventory.h" +#include "../loot/loot.h" static bool use_cherry(struct itemstack *stack) { @@ -66,5 +67,12 @@ __attribute__((constructor)) static void init() .room_chance = 100, .callback = &spawn_cherry, }); + + register_loot((struct loot) { + .item = &cherry_item, + .chance = 2, + .min = 3, + .max = 10, + }); } |