Fixed bugs

This commit is contained in:
Auxilor
2021-12-08 20:40:39 +00:00
parent 00ea3506ca
commit df22768367
2 changed files with 3 additions and 16 deletions

View File

@@ -54,6 +54,7 @@ public interface AntigriefWrapper extends Integration {
* @param location The location.
* @return If player can pick up item.
*/
boolean canPickupItem(@NotNull Player player, @NotNull Location location);
default boolean canPickupItem(@NotNull Player player, @NotNull Location location) {
return true;
}
}