Add meaningful default methods to getMask for region protection

This commit is contained in:
dordsor21
2021-10-21 18:25:36 +01:00
parent d4eda78818
commit 857090bdde

View File

@ -30,14 +30,14 @@ public abstract class FaweMaskManager {
*/
@Deprecated(forRemoval = true)
public FaweMask getMask(final Player player, MaskType type) {
return null;
return getMask(player, type, true);
}
/**
* Get a {@link FaweMask} for the given player and {@link MaskType}. If isWhitelist is false, will return a "blacklist" mask.
*/
public FaweMask getMask(final Player player, MaskType type, boolean isWhitelist) {
return null;
return getMask(player, type);
}
/**