Added missing 'implements Cancellable' to several classes.

By: EvilSeph <evilseph@unaligned.org>
This commit is contained in:
Bukkit/Spigot
2011-06-22 17:23:44 -04:00
parent 08cfa11ba6
commit 0a4fb615fc
2 changed files with 4 additions and 4 deletions

View File

@@ -2,13 +2,12 @@ package org.bukkit.event.block;
import org.bukkit.block.Block;
import org.bukkit.Material;
import org.bukkit.event.Cancellable;
/**
* Thrown when a block physics check is called
*
* @author Dinnerbone
*/
public class BlockPhysicsEvent extends BlockEvent {
public class BlockPhysicsEvent extends BlockEvent implements Cancellable {
private final int changed;
private boolean cancel = false;