This file is indexed.

/usr/share/games/minetest/mods/animalmaterials/mob_environments/general_env_sets.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
-------------------------------------------------------------------------------
-- 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 flight_1.lua
--! @brief a environment description for in flight mobs
--! @copyright Sapier
--! @author Sapier
--! @date 2013-01-06
--
--! @addtogroup environments
--! @{
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------

--! @addtogroup predev_env_sets
--! @{
mobf_env_placable_items = {
	"default:rail",
	"default:ladder",
	"default:torch",
	"default:sign_wall",
}


mobf_env_plants = {
	"default:junglegrass",
	"default:papyrus",
	"default:sapling",
	"default:apple",
	"default:grass_1",
	"default:grass_2",
	"default:grass_3",
	"default:grass_4",
	"default:grass_5",
	-- From the vines mod...
	"vines:side",
	-- From the plantlife mod...
	"poisonivy:seedling",
	"poisonivy:sproutling"
}

mobf_env_flowers = {
	"flowers:dandelion_white",
	"flowers:dandelion_yellow",
	"flowers:geranium",
	"flowers:rose",
	"flowers:tulip",
	"flowers:viola"
}

--@}
--@}