/usr/share/games/minetest/mods/animalmaterials/mob_environments/deep_water.lua is in minetest-mod-animalmaterials 0.1.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | -------------------------------------------------------------------------------
-- Mob Framework Mod by Sapier
--
-- You may copy, use, modify or do nearly anything except removing this
-- copyright notice.
-- And of course you are NOT allow to pretend you have written it.
--
--! @file deep_water.lua
--! @brief deep water
--! @copyright Sapier
--! @author Sapier
--! @date 2013-10-03
--
--! @addtogroup environments
--! @{
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------
--! @struct env_deep_water
--! @brief deep water is not moving water with a depht up to -50
env_deep_water = {
media = {
"default:water_source",
},
surfaces = nil,
--ground is first node above/below not beeing of media type
max_height_above_ground = 0,
min_height_above_ground = -50
}
--!@}
environment.register("deep_water", env_deep_water)
|