diff --git a/mods/CORE/mcl_core/init.lua b/mods/CORE/mcl_core/init.lua index d1654432..7ab474c2 100644 --- a/mods/CORE/mcl_core/init.lua +++ b/mods/CORE/mcl_core/init.lua @@ -16,6 +16,9 @@ mcl_core.repair = 0.05 minetest.nodedef_default.stack_max = 64 minetest.craftitemdef_default.stack_max = 64 +-- Set random seed for all other mods (Remember to make sure no other mod calls this function) +math.randomseed(os.time()) + -- Load files dofile(minetest.get_modpath("mcl_core").."/functions.lua") dofile(minetest.get_modpath("mcl_core").."/nodes.lua") diff --git a/mods/ENTITIES/drippingwater/init.lua b/mods/ENTITIES/drippingwater/init.lua index bf58b35e..91469568 100644 --- a/mods/ENTITIES/drippingwater/init.lua +++ b/mods/ENTITIES/drippingwater/init.lua @@ -3,10 +3,6 @@ -- License of code, textures & sounds: CC0 ---Random -math.randomseed(3) - - --Drop entities --water