Recent content by NickCloudAT

  1. N

    Solved Get structure a player is in

    Well, found a way: String structureString = Objects.requireNonNull(RegistryAccess.registryAccess().getRegistry(RegistryKey.STRUCTURE).getKey(generatedStructure.getStructure())).asMinimalString();
  2. N

    Solved Get structure a player is in

    Hey, I'm currently making a plugin in where I need to check in which structure a player is in.. Currently I have smth like this: for(final Player p : Bukkit.getOnlinePlayers()){ final ArrayList<String> foundStructures = new ArrayList<>()...