mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 04:17:44 +01:00
Implemented BlockRightClickedEvent
By: durron597 <martin.jared@gmail.com>
This commit is contained in:
parent
7740148f73
commit
66676f3800
@ -4,19 +4,50 @@
|
|||||||
package org.bukkit.event.block;
|
package org.bukkit.event.block;
|
||||||
|
|
||||||
import org.bukkit.Block;
|
import org.bukkit.Block;
|
||||||
|
import org.bukkit.BlockFace;
|
||||||
|
import org.bukkit.ItemStack;
|
||||||
|
import org.bukkit.Player;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Not implemented yet
|
* @author durron597
|
||||||
*/
|
*/
|
||||||
public class BlockRightClickedEvent extends BlockEvent {
|
public class BlockRightClickedEvent extends BlockEvent {
|
||||||
|
protected Player clicker;
|
||||||
|
protected BlockFace direction;
|
||||||
|
protected ItemStack clickedWith;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param type
|
* @param type The type of event this is
|
||||||
* @param theBlock
|
* @param theBlock The clicked block
|
||||||
|
* @param direction The face we clicked from
|
||||||
|
* @param clicker The player who clicked a block
|
||||||
|
* @param clickedWith Item in player's hand
|
||||||
*/
|
*/
|
||||||
public BlockRightClickedEvent(Type type, Block theBlock) {
|
public BlockRightClickedEvent(Type type, Block theBlock, BlockFace direction, Player clicker, ItemStack clickedWith) {
|
||||||
super(type, theBlock);
|
super(type, theBlock);
|
||||||
// TODO Auto-generated constructor stub
|
this.direction = direction;
|
||||||
|
this.clicker = clicker;
|
||||||
|
this.clickedWith = clickedWith;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the clicker
|
||||||
|
*/
|
||||||
|
public Player getClicker() {
|
||||||
|
return clicker;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the direction
|
||||||
|
*/
|
||||||
|
public BlockFace getDirection() {
|
||||||
|
return direction;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the clickedWith
|
||||||
|
*/
|
||||||
|
public ItemStack getClickedWith() {
|
||||||
|
return clickedWith;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user