rename registry

This commit is contained in:
Miles Holder 2024-09-26 18:59:28 -05:00
parent 5335101e28
commit 07129d90f7
No known key found for this signature in database
GPG key ID: B9CBACC92C5C094C
2 changed files with 5 additions and 1 deletions

View file

@ -354,7 +354,7 @@ public interface Registry<T extends Keyed> extends Iterable<T> {
*
* @see PoiType
*/
Registry<PoiType> POI_TYPE = Objects.requireNonNull(Bukkit.getRegistry(PoiType.class), "No registry present for PoiType. This is a bug.");
Registry<PoiType> POINT_OF_INTEREST_TYPE = Objects.requireNonNull(Bukkit.getRegistry(PoiType.class), "No registry present for PoiType. This is a bug.");
/**
* Get the object by its key.
*

View file

@ -0,0 +1,4 @@
package org.bukkit.util;
public interface PoiSearchResult {
}