mirror of
https://github.com/pandorabox-io/spacecannon.git
synced 2024-12-21 05:15:47 +01:00
18 lines
282 B
Lua
18 lines
282 B
Lua
|
|
spacecannon = {
|
|
config = {
|
|
-- technic EU storage value
|
|
powerstorage = 10000,
|
|
|
|
-- charge value in EU
|
|
powerrequirement = 2500
|
|
|
|
}
|
|
}
|
|
|
|
local MP = minetest.get_modpath("spacecannon")
|
|
|
|
dofile(MP.."/util.lua")
|
|
dofile(MP.."/cannon.lua")
|
|
|
|
print("[OK] Spacecannon") |