DeeperWorld
DeeperWorld copied to clipboard
A Spigot plugin that automatically teleports players between regions, mimicking deeper worlds
Right now its not easy to have two separate sets of connected sections. This is allowed easily in the code, but the config does not support it.
Currently it is only syncing hoppers when it receives an item from a below section ```kt /** Synchronize hopper pickups between sections */ @EventHandler(ignoreCancelled = true) fun InventoryPickupItemEvent.hopperGrabEvent() { inventory.location?.sync...
This PR completes DeeperWorld#25 - Add depth calculation to the WorldManager API in the form of getDepthFor functions - I changed the algorithm a bit compared to how it was...