@@ -83,6 +83,7 @@ function default.node_sound_glass_defaults(table)
83
83
return table
84
84
end
85
85
86
+
86
87
--
87
88
-- Lavacooling
88
89
--
@@ -102,8 +103,8 @@ minetest.register_abm({
102
103
neighbors = {" group:water" },
103
104
interval = 1 ,
104
105
chance = 1 ,
105
- action = function (pos , node , active_object_count , active_object_count_wider )
106
- default .cool_lava_flowing (pos , node , active_object_count , active_object_count_wider )
106
+ action = function (... )
107
+ default .cool_lava_flowing (... )
107
108
end ,
108
109
})
109
110
@@ -112,66 +113,86 @@ minetest.register_abm({
112
113
neighbors = {" group:water" },
113
114
interval = 1 ,
114
115
chance = 1 ,
115
- action = function (pos , node , active_object_count , active_object_count_wider )
116
- default .cool_lava_source (pos , node , active_object_count , active_object_count_wider )
116
+ action = function (... )
117
+ default .cool_lava_source (... )
117
118
end ,
118
119
})
119
120
121
+
120
122
--
121
123
-- Papyrus and cactus growing
122
124
--
123
125
126
+ function default .grow_cactus (pos , node )
127
+ if node .param2 ~= 0 then
128
+ return
129
+ end
130
+ pos .y = pos .y - 1
131
+ if minetest .get_item_group (minetest .get_node (pos ).name , " sand" ) == 0 then
132
+ return
133
+ end
134
+ pos .y = pos .y + 1
135
+ local height = 0
136
+ while node .name == " default:cactus" and height < 4 and node .param2 == 0 do
137
+ height = height + 1
138
+ pos .y = pos .y + 1
139
+ node = minetest .get_node (pos )
140
+ end
141
+ if height == 4
142
+ or node .name ~= " air" then
143
+ return
144
+ end
145
+ minetest .set_node (pos , {name = " default:cactus" })
146
+ return true
147
+ end
148
+
149
+ function default .grow_papyrus (pos , node )
150
+ pos .y = pos .y - 1
151
+ local name = minetest .get_node (pos ).name
152
+ if name ~= " default:dirt_with_grass"
153
+ and name ~= " default:dirt" then
154
+ return
155
+ end
156
+ if not minetest .find_node_near (pos , 3 , {" group:water" }) then
157
+ return
158
+ end
159
+ pos .y = pos .y + 1
160
+ local height = 0
161
+ while node .name == " default:papyrus" and height < 4 do
162
+ height = height + 1
163
+ pos .y = pos .y + 1
164
+ node = minetest .get_node (pos )
165
+ end
166
+ if height == 4
167
+ or node .name ~= " air" then
168
+ return
169
+ end
170
+ minetest .set_node (pos , {name = " default:papyrus" })
171
+ return true
172
+ end
173
+
174
+ -- wrapping the functions in abm action is necessary to make overriding them possible
124
175
minetest .register_abm ({
125
176
nodenames = {" default:cactus" },
126
177
neighbors = {" group:sand" },
127
178
interval = 50 ,
128
179
chance = 20 ,
129
- action = function (pos , node )
130
- pos .y = pos .y - 1
131
- local name = minetest .get_node (pos ).name
132
- if minetest .get_item_group (name , " sand" ) ~= 0 then
133
- pos .y = pos .y + 1
134
- local height = 0
135
- while minetest .get_node (pos ).name == " default:cactus" and height < 4 do
136
- height = height + 1
137
- pos .y = pos .y + 1
138
- end
139
- if height < 4 then
140
- if minetest .get_node (pos ).name == " air" then
141
- minetest .set_node (pos , {name = " default:cactus" })
142
- end
143
- end
144
- end
145
- end ,
180
+ action = function (...)
181
+ default .grow_cactus (... )
182
+ end
146
183
})
147
184
148
185
minetest .register_abm ({
149
186
nodenames = {" default:papyrus" },
150
187
neighbors = {" default:dirt" , " default:dirt_with_grass" },
151
188
interval = 50 ,
152
189
chance = 20 ,
153
- action = function (pos , node )
154
- pos .y = pos .y - 1
155
- local name = minetest .get_node (pos ).name
156
- if name == " default:dirt" or name == " default:dirt_with_grass" then
157
- if minetest .find_node_near (pos , 3 , {" group:water" }) == nil then
158
- return
159
- end
160
- pos .y = pos .y + 1
161
- local height = 0
162
- while minetest .get_node (pos ).name == " default:papyrus" and height < 4 do
163
- height = height + 1
164
- pos .y = pos .y + 1
165
- end
166
- if height < 4 then
167
- if minetest .get_node (pos ).name == " air" then
168
- minetest .set_node (pos , {name = " default:papyrus" })
169
- end
170
- end
171
- end
172
- end ,
190
+ action = function (...)
191
+ default .grow_papyrus (... )
192
+ end
173
193
})
174
194
195
+
175
196
--
176
197
-- dig upwards
177
198
--
@@ -185,6 +206,7 @@ function default.dig_up(pos, node, digger)
185
206
end
186
207
end
187
208
209
+
188
210
--
189
211
-- Leafdecay
190
212
--
0 commit comments