mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-03-31 05:33:14 +00:00
26 lines
692 B
Java
26 lines
692 B
Java
package com.thevoxelbox.voxelsniper.event;
|
|
|
|
import com.thevoxelbox.voxelsniper.Sniper;
|
|
import org.bukkit.block.data.BlockData;
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public class SniperReplaceMaterialChangedEvent extends SniperMaterialChangedEvent {
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
public SniperReplaceMaterialChangedEvent(Sniper sniper, String toolId, BlockData originalMaterial, BlockData newMaterial) {
|
|
super(sniper, toolId, originalMaterial, newMaterial);
|
|
}
|
|
|
|
public static HandlerList getHandlerList() {
|
|
return handlers;
|
|
}
|
|
|
|
@Override
|
|
public HandlerList getHandlers() {
|
|
return handlers;
|
|
}
|
|
}
|