├── .github └── workflows │ └── build.yml ├── .luacheckrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── description.txt ├── init.lua ├── mod.conf ├── screenshot.png ├── settingtypes.txt └── sounds ├── item_drop_pickup.1.ogg ├── item_drop_pickup.2.ogg ├── item_drop_pickup.3.ogg └── item_drop_pickup.4.ogg /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/.luacheckrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/README.md -------------------------------------------------------------------------------- /description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/description.txt -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/init.lua -------------------------------------------------------------------------------- /mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/mod.conf -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/screenshot.png -------------------------------------------------------------------------------- /settingtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/settingtypes.txt -------------------------------------------------------------------------------- /sounds/item_drop_pickup.1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/sounds/item_drop_pickup.1.ogg -------------------------------------------------------------------------------- /sounds/item_drop_pickup.2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/sounds/item_drop_pickup.2.ogg -------------------------------------------------------------------------------- /sounds/item_drop_pickup.3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/sounds/item_drop_pickup.3.ogg -------------------------------------------------------------------------------- /sounds/item_drop_pickup.4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/item_drop/HEAD/sounds/item_drop_pickup.4.ogg --------------------------------------------------------------------------------