This file is indexed.

/usr/share/games/minetest/mods/animalmaterials/mob_environments/init.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
-------------------------------------------------------------------------------
-- mob_environments Mod by Sapier
--
--
--! @file init.lua
--! @brief main init file for environment definitions
--! @copyright Sapier
--! @author Sapier
--! @date 2014-08-11
--
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------
local ar_version = "0.0.1"

core.log("action", "MOD: Loading mob_environments mod ...")

--!path of mod
local me_modpath = minetest.get_modpath("mob_environments")

dofile (me_modpath .. "/general_env_sets.lua")
dofile (me_modpath .. "/flight_1.lua")
dofile (me_modpath .. "/meadow.lua")
dofile (me_modpath .. "/on_ground_2.lua")
dofile (me_modpath .. "/open_waters.lua")
dofile (me_modpath .. "/shallow_waters.lua")
dofile (me_modpath .. "/deep_water.lua")
dofile (me_modpath .. "/simple_air.lua")

core.log("action", "MOD: mob_environments mod " .. ar_version .. " loaded.")