summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2025-03-15 16:34:20 -0500
committercheapie <no-email-for-you@example.com>2025-03-15 16:34:20 -0500
commit93b2ae4540e5b2f06e8e42c847bd0239a022de0d (patch)
tree5d7219b1fbbb1c8638f34b0f130e81d1529da19c
parentbec98bd9cbe3b5efc28ee08959ff81b0c4c4fcf8 (diff)
downloadcelevator-93b2ae4540e5b2f06e8e42c847bd0239a022de0d.tar
celevator-93b2ae4540e5b2f06e8e42c847bd0239a022de0d.tar.gz
celevator-93b2ae4540e5b2f06e8e42c847bd0239a022de0d.tar.bz2
celevator-93b2ae4540e5b2f06e8e42c847bd0239a022de0d.tar.xz
celevator-93b2ae4540e5b2f06e8e42c847bd0239a022de0d.zip
Fix tapeheads not appearing
-rw-r--r--car.lua3
-rw-r--r--decorations.lua2
2 files changed, 4 insertions, 1 deletions
diff --git a/car.lua b/car.lua
index 1395d9d..6c75848 100644
--- a/car.lua
+++ b/car.lua
@@ -198,6 +198,9 @@ function celevator.car.register(name,defs,size)
if def._pi then
def.groups._celevator_car_spawnspi = 1
end
+ if def._tapehead then
+ def.groups._celevator_car_spawnstapehead = 1
+ end
if def._position == "000" then
def.groups._celevator_car_root = 1
def._root = true
diff --git a/decorations.lua b/decorations.lua
index 847c06a..7c408e4 100644
--- a/decorations.lua
+++ b/decorations.lua
@@ -304,7 +304,7 @@ end
minetest.register_abm({
label = "Spawn tapeheads",
- nodenames = {"celevator:car_122"},
+ nodenames = {"group:_celevator_car_spawnstapehead"},
neighbors = {"celevator:tape","celevator:tape_magnets","celevator:tape_bracket"},
interval = 1,
chance = 1,