add McMMOPlayerMasterAnglerEvent and ability to cancel it if desired (#5111)

This commit is contained in:
Jacob
2024-11-16 18:24:05 -05:00
committed by GitHub
parent 79ad86ff29
commit 570cadb276
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.gmail.nossr50.events.skills.fishing;
import com.gmail.nossr50.datatypes.player.McMMOPlayer;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
import org.jetbrains.annotations.NotNull;
public class McMMOPlayerMasterAnglerEvent extends McMMOPlayerFishingEvent {
public McMMOPlayerMasterAnglerEvent(@NotNull McMMOPlayer mcMMOPlayer) {
super(mcMMOPlayer);
}
}