Separate `system_info('world_size')` into `system_info('world_max_size')` and `system_info('world_border_size')`
James103 opened this issue ยท 2 comments
Currently, system_info('world_size')
returns the maximum size of the world border as shown here:
put("world_size", c-> new NumericValue( c.s.getWorld().getWorldBorder().getMaxRadius()));
I would like if this was split into two, as described in the title:
put("world_max_size", c -> new NumericValue( c.s.getWorld().getWorldBorder().getMaxRadius()));
put("world_border_size", c -> new NumericValue( c.s.getWorld().getWorldBorder().getSize()));
Yeah, I have the same expectation about the world size - its a technical limit and will not likely change. World border is the actual 'size' and the only one I think