Fixed BlockListener methods to be present tense.

This commit is contained in:
sk89q 2011-01-15 17:09:10 -08:00
parent d84827914b
commit 990b70e23c

View File

@ -19,7 +19,7 @@ public class BlockListener implements Listener {
*
* @param event Relevant event details
*/
public void onBlockDamaged(BlockDamageEvent event) {
public void onBlockDamage(BlockDamageEvent event) {
}
/**
@ -57,7 +57,7 @@ public class BlockListener implements Listener {
*
* @param event Relevant event details
*/
public void onBlockPlaced(BlockPlaceEvent event) {
public void onBlockPlace(BlockPlaceEvent event) {
}
/**
@ -65,7 +65,7 @@ public class BlockListener implements Listener {
*
* @param event Relevant event details
*/
public void onBlockInteracted(BlockInteractEvent event) {
public void onBlockInteract(BlockInteractEvent event) {
}
/**
@ -73,7 +73,7 @@ public class BlockListener implements Listener {
*
* @param event Relevant event details
*/
public void onBlockRightClicked(BlockRightClickEvent event) {
public void onBlockRightClick(BlockRightClickEvent event) {
}
/**