]> git.lizzy.rs Git - elidragon_v2.git/blob - mods/elidragon_skyblock/init.lua
c3ef330b3b99137dca8d55bd5f559fc2d47075ab
[elidragon_v2.git] / mods / elidragon_skyblock / init.lua
1 local plot, plotmg = elidragon.plot, elidragon.plotmg
2
3 plot.config = {
4         gap = 1000,
5         road_width = 100,
6         min_y = 2000,
7         max_y = 31000,
8         auto_allocation = true,
9         on_claim = function() -- create island and move there
10         end
11 }
12
13 plotmg.config = {
14         min_y = 1000,
15         max_y = 31000,
16         void_layer = {
17                 min_y = 1000,
18                 max_y = 2000,
19                 c_void = minetest.get_content_id("mcl_core:void"),
20         },
21         c_border = minetest.get_content_id("mcl_core:barrier"), -- ToDo: make world border      
22 }
23
24 elidragon.skyblock = {}