This page contains information only useful to plugin developers
https://deez.download/releases
dev.saber
saberfactions
4.2.0
FLocation
is a Chunk wrapper. If you ever want to deal with the map, claimed land, or something similar, you'll need to convert a Location
or Chunk
into an FLocation
, both of which are super easy
FLocation flocation = new FLocation(location);
// Broken apart just to avoid making an overly wide example
String worldName = chunk.getWorld().getName();
int x = chunk.getX();
int z = chunk.getZ();
FLocation flocation = new FLocation(worldName, x, z);