This file is indexed.

/usr/share/games/minetest/mods/animalmaterials/animal_resources/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
-------------------------------------------------------------------------------
-- Animal Resources Mod by Sapier
--
--
--! @file init.lua
--! @brief main init file for animal resources
--! @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 animal resources mod ...")

--!path of mod
local ar_modpath = minetest.get_modpath("animal_resources")

dofile (ar_modpath .. "/tools.lua")
dofile (ar_modpath .. "/weapons.lua")

ar_init_weapons();
ar_init_tool_crafts();

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