File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/pro/cloudnode/smp/bankaccounts Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2323import pro .cloudnode .smp .bankaccounts .events .BlockBreak ;
2424import pro .cloudnode .smp .bankaccounts .events .GUI ;
2525import pro .cloudnode .smp .bankaccounts .events .Join ;
26- import pro .cloudnode .smp .bankaccounts .events .PlayerInteract ;
26+ import pro .cloudnode .smp .bankaccounts .events .POSOpen ;
2727import pro .cloudnode .smp .bankaccounts .integrations .PAPIIntegration ;
2828import pro .cloudnode .smp .bankaccounts .integrations .VaultIntegration ;
2929
@@ -89,7 +89,7 @@ public void onEnable() {
8989 final @ NotNull Listener [] events = new Listener []{
9090 new Join (),
9191 new BlockBreak (),
92- new PlayerInteract (),
92+ new POSOpen (),
9393 new GUI ()
9494 };
9595 for (final @ NotNull Listener event : events ) getServer ().getPluginManager ().registerEvents (event , this );
Original file line number Diff line number Diff line change 1818
1919import java .util .Optional ;
2020
21- public final class PlayerInteract implements Listener {
21+ public final class POSOpen implements Listener {
2222 @ EventHandler
2323 public void openPOS (final @ NotNull PlayerInteractEvent event ) {
2424 final @ NotNull Player player = event .getPlayer ();
You can’t perform that action at this time.
0 commit comments