13
0
geforkt von Mirrors/Paper

SPIGOT-4793: Clarify cancelled behaviour of PlayerInteractEvent

By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2019-04-28 11:24:18 +10:00
Ursprung db63ba0a7b
Commit d66310a2f1

Datei anzeigen

@ -66,7 +66,14 @@ public class PlayerInteractEvent extends PlayerEvent implements Cancellable {
* prevent buckets from placing water and so forth
*
* @return boolean cancellation state
* @deprecated This event has two possible cancellation states, one for
* {@link #useInteractedBlock()} and one for {@link #useItemInHand()}. It is
* possible a call might have the former false, but the latter true, eg in
* the case of using a firework whilst gliding. Callers should check the
* relevant methods individually.
*/
@Deprecated
@Override
public boolean isCancelled() {
return useInteractedBlock() == Result.DENY;
}