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