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