mirror of
https://gitlab.com/echoes91/throwing.git
synced 2025-06-30 07:10:22 +02:00
First commit, as of 0.9
This commit is contained in:
28
init.lua
Normal file
28
init.lua
Normal file
@ -0,0 +1,28 @@
|
||||
arrows = {
|
||||
{"throwing:arrow_steel", "throwing:arrow_steel_entity"},
|
||||
{"throwing:arrow_stone", "throwing:arrow_stone_entity"},
|
||||
{"throwing:arrow_obsidian", "throwing:arrow_obsidian_entity"},
|
||||
{"throwing:arrow_fire", "throwing:arrow_fire_entity"},
|
||||
{"throwing:arrow_teleport", "throwing:arrow_teleport_entity"},
|
||||
{"throwing:arrow_dig", "throwing:arrow_dig_entity"},
|
||||
{"throwing:arrow_build", "throwing:arrow_build_entity"},
|
||||
{"throwing:arrow_tnt", "throwing:arrow_tnt_entity"},
|
||||
{"throwing:arrow_torch", "throwing:arrow_torch_entity"},
|
||||
{"throwing:arrow_diamond", "throwing:arrow_diamond_entity"},
|
||||
}
|
||||
|
||||
dofile(minetest.get_modpath("throwing").."/bows.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/steel_arrow.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/stone_arrow.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/obsidian_arrow.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/fire_arrow.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/teleport_arrow.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/dig_arrow.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/build_arrow.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/tnt_arrow.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/torch_arrow.lua")
|
||||
dofile(minetest.get_modpath("throwing").."/diamond_arrow.lua")
|
||||
|
||||
if minetest.setting_get("log_mods") then
|
||||
minetest.log("action", "throwing loaded")
|
||||
end
|
Reference in New Issue
Block a user