From 922759a83e58b8334c259b7441b89e344bbbe12d Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Thu, 19 Oct 2023 18:26:31 +0100 Subject: [PATCH] Make dullahan a rare spawn in dusty caves --- world/src/layer/cave.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/world/src/layer/cave.rs b/world/src/layer/cave.rs index 8714a2284b..a147144fa8 100644 --- a/world/src/layer/cave.rs +++ b/world/src/layer/cave.rs @@ -897,6 +897,10 @@ fn apply_entity_spawns(canvas: &mut Canvas, wpos: Vec3, biome: &Bio Some("common.entity.wild.aggressive.bat"), (biome.dusty + 0.1) * 0.25, ), + ( + Some("common.entity.wild.aggressive.dullahan"), + (biome.dusty + 0.1) * 0.025, + ), // Icy biome ( Some("common.entity.wild.aggressive.blue_oni"),