]> git.lizzy.rs Git - elidragon_v2.git/blob - mods/elidragon_skyblock/init.lua
Proper indentation in the plotmg; remove void layer and fix dependency problem
[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         c_border = minetest.get_content_id("mcl_core:barrier"),
17 }
18
19 elidragon.skyblock = {}