mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 04:33:56 -07:00
Fixed BlockListener methods to be present tense.
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
@@ -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) {
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user