Skip to content

Commit

Permalink
Make (Neo)ForgeHarvestEvent abstract.
Browse files Browse the repository at this point in the history
  • Loading branch information
Crystal-Spider committed Jun 27, 2024
1 parent 9b22e99 commit 332d6c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private HarvestEvents() {}
/**
* Generic Forge harvest event.
*/
public static class ForgeHarvestEvent<P extends Player, L extends Level> extends PlayerInteractEvent implements HarvestEvent<P, L> {
public static abstract class ForgeHarvestEvent<P extends Player, L extends Level> extends PlayerInteractEvent implements HarvestEvent<P, L> {
/**
* Level in which the interaction takes place.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private HarvestEvents() {}
/**
* Generic Forge harvest event.
*/
public static class NeoForgeHarvestEvent<P extends Player, L extends Level> extends PlayerInteractEvent implements HarvestEvent<P, L> {
public static abstract class NeoForgeHarvestEvent<P extends Player, L extends Level> extends PlayerInteractEvent implements HarvestEvent<P, L> {
/**
* Level in which the interaction takes place.
*/
Expand Down

0 comments on commit 332d6c9

Please sign in to comment.