10 lines
242 B
Java
10 lines
242 B
Java
package org.bukkit.entity;
|
|
|
|
/**
|
|
* Represents a thrown lingering potion bottle
|
|
*
|
|
* @deprecated lingering status depends on only on the potion item.
|
|
*/
|
|
@Deprecated(since = "1.20.5")
|
|
public interface LingeringPotion extends ThrownPotion { }
|