aboutsummaryrefslogtreecommitdiff
path: root/plugins/fireball/fireball.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/fireball/fireball.c')
-rw-r--r--plugins/fireball/fireball.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/fireball/fireball.c b/plugins/fireball/fireball.c
index a0e9a13..e771d08 100644
--- a/plugins/fireball/fireball.c
+++ b/plugins/fireball/fireball.c
@@ -3,6 +3,7 @@
#include "../game/game.h"
#include "../movement/movement.h"
#include "../inventory/inventory.h"
+#include "../loot/loot.h"
struct fireball_data
{
@@ -113,4 +114,11 @@ __attribute__((constructor)) static void init()
.count = 7,
.meta = NULL,
});
+
+ register_loot((struct loot) {
+ .item = &fireball_item,
+ .chance = 3,
+ .min = 4,
+ .max = 7,
+ });
}