getSteerItemType -> getSteerItem

This commit is contained in:
DerFrZocker 2023-05-19 19:56:31 +02:00
parent d8d0e43ba5
commit 27e282b25f
No known key found for this signature in database
GPG key ID: 713F71FFFE1DDF91

View file

@ -26,7 +26,7 @@ public interface Steerable extends Animals {
* Get the time in ticks this entity's movement is being increased. * Get the time in ticks this entity's movement is being increased.
* *
* Movement speed is often increased as a result of using the * Movement speed is often increased as a result of using the
* {@link #getSteerItemType()}. * {@link #getSteerItem()}.
* *
* @return the current boost ticks * @return the current boost ticks
*/ */
@ -67,5 +67,5 @@ public interface Steerable extends Animals {
* @return the lure item type * @return the lure item type
*/ */
@NotNull @NotNull
public ItemType getSteerItemType(); public ItemType getSteerItem();
} }