diff options
Diffstat (limited to 'plugins/monster')
-rw-r--r-- | plugins/monster/monster.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/monster/monster.c b/plugins/monster/monster.c index a9e725c..d140005 100644 --- a/plugins/monster/monster.c +++ b/plugins/monster/monster.c @@ -68,7 +68,8 @@ static void spawn_monster(int x, int y, enum mg_context ctx) __attribute__((constructor)) static void init() { register_air_function((struct generator_function) { - .chance = 50, + .corridor_chance = 50, + .room_chance = 200, .callback = &spawn_monster, }); } |