Fixed logging

This commit is contained in:
2021-12-23 16:40:42 +01:00
parent 317c294599
commit f34ba069ee
3 changed files with 13 additions and 10 deletions
@@ -14,6 +14,7 @@ public final class SpawnShopEvent extends Event {
private final int pointsBefore;
private final int pointsAfter;
private final boolean buy;
private final HandlerList handlers = new HandlerList();
public SpawnShopEvent(Player player, int amount, double price, Material item,
int pointsBefore, int pointsAfter, boolean buy) {
@@ -56,7 +57,7 @@ public final class SpawnShopEvent extends Event {
@Override
public @NotNull HandlerList getHandlers() {
return null;
return handlers;
}
}