Class ProtectionPluginCompatibility
- java.lang.Object
-
- com.github.crashdemons.playerheads.compatibility.plugins.CompatiblePlugin
-
- com.github.crashdemons.playerheads.compatibility.plugins.ProtectionPluginCompatibility
-
public class ProtectionPluginCompatibility extends CompatiblePlugin
Defines required operations performed for generic block/region protection plugins for compatibility reasons.- Author:
- crashdemons (crashenator at gmail.com)
-
-
Field Summary
-
Fields inherited from class com.github.crashdemons.playerheads.compatibility.plugins.CompatiblePlugin
config, parentPlugin
-
-
Constructor Summary
Constructors Constructor Description ProtectionPluginCompatibility(Plugin parentPlugin)
Create the protection-plugin compatibility class
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
testBlockBreak(Block block, Player player)
Simulates a block-break event from a user in order to check if it would normally be blocked by a protection-plugin.-
Methods inherited from class com.github.crashdemons.playerheads.compatibility.plugins.CompatiblePlugin
get, getName, getPlugin, isPresent, isReady, reloadConfig
-
-
-
-
Constructor Detail
-
ProtectionPluginCompatibility
public ProtectionPluginCompatibility(Plugin parentPlugin)
Create the protection-plugin compatibility class- Parameters:
parentPlugin
- the plugin requesting the compatibility support (provides logging/events)
-
-
Method Detail
-
testBlockBreak
public boolean testBlockBreak(Block block, Player player)
Simulates a block-break event from a user in order to check if it would normally be blocked by a protection-plugin.- Parameters:
block
- the block allegedly being broken.player
- the player allegedly breaking the block.- Returns:
- true: the block break event was allowed, false: the block-break event was blocked (cancelled).
-
-