From 66e74b8c16e3fbb0dfc8cf332ccdc557e4ab54ff Mon Sep 17 00:00:00 2001 From: EmptyStar Date: Thu, 10 Oct 2024 19:21:14 -0400 Subject: [PATCH] Add paramtype="light" to animalia:spawner to prevent shadows from spawner --- api/spawning.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/api/spawning.lua b/api/spawning.lua index b06bebb..337b4e6 100644 --- a/api/spawning.lua +++ b/api/spawning.lua @@ -303,6 +303,7 @@ minetest.register_node("animalia:spawner", { drawtype = "airlike", walkable = false, pointable = false, + paramtype = "light", sunlight_propagates = true, groups = {oddly_breakable_by_hand = 1, not_in_creative_inventory = 1} })