mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
Fixed BlockListener methods to be present tense.
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
ea2c6665c0
commit
6c64ffd54e
1 changed files with 4 additions and 4 deletions
|
@ -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) {
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue