Update: added check for unloaded map

This commit is contained in:
tenplus1 2014-12-10 10:51:27 +00:00
parent 47bee0ee48
commit 9ffbbf4c0e
3 changed files with 7 additions and 2 deletions

View File

@ -11,7 +11,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t
Changelog:
1.10 - Added Blueberry Bush and Blueberry Muffins, also Pumpkin/Melon easier to pick up
1.10 - Added Blueberry Bush and Blueberry Muffins, also Pumpkin/Melon easier to pick up, added check for unloaded map
1.09 - Corn now uses single nodes instead of 1 ontop of the other, Ethanol recipe is more expensive (requires 5 corn) and some code cleanup.
1.08 - Added Farming Plus compatibility, plus can be removed and no more missing nodes
1.07 - Added Rhubarb and Rhubarb Pie

View File

@ -1,5 +1,5 @@
--[[
Minetest Farming Redo Mod 1.10 (4th November 2014)
Minetest Farming Redo Mod 1.10 (10th December 2014)
by TenPlus1
]]

View File

@ -44,6 +44,11 @@ minetest.register_abm({
minetest.set_node(pos, {name="default:dirt"})
end
-- if map around soil not loaded then skip until loaded
if minetest.find_node_near(pos, 3, {"ignore"}) then
return
end
-- check if there is water nearby and change soil accordingly
if minetest.find_node_near(pos, 3, {"group:water"}) then
if node.name == "farming:soil" then