Skip to content

Commit

Permalink
feat: handle trampling
Browse files Browse the repository at this point in the history
  • Loading branch information
Wertik committed Dec 5, 2024
1 parent 0b9cc66 commit ec14615
Show file tree
Hide file tree
Showing 5 changed files with 618 additions and 537 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import net.milkbowl.vault.economy.Economy;
import nl.aurorion.blockregen.commands.Commands;
import nl.aurorion.blockregen.configuration.Files;
import nl.aurorion.blockregen.listeners.BlockListener;
import nl.aurorion.blockregen.listeners.RegenerationListener;
import nl.aurorion.blockregen.listeners.PlayerListener;
import nl.aurorion.blockregen.particles.ParticleManager;
import nl.aurorion.blockregen.particles.impl.FireWorks;
Expand Down Expand Up @@ -285,7 +285,7 @@ public void onDisable() {

private void registerListeners() {
PluginManager pluginManager = this.getServer().getPluginManager();
pluginManager.registerEvents(new BlockListener(this), this);
pluginManager.registerEvents(new RegenerationListener(this), this);
pluginManager.registerEvents(new PlayerListener(this), this);
}

Expand Down
Loading

0 comments on commit ec14615

Please sign in to comment.