Skip to content

Commit

Permalink
Merge pull request Sefiraat#149 from balugaq/master
Browse files Browse the repository at this point in the history
  • Loading branch information
balugaq authored Oct 27, 2024
2 parents a88e418 + 27f15d8 commit 6c342e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Fix https://github.com/Sefiraat/Networks/issues/192
* Fix https://github.com/ytdd9527/NetworksExpansion/issues/119
*/
public class BlockListener implements Listener {
public class SyncListener implements Listener {
private static final String S1 = "Listened BlockBreakEvent at {0}";
private static final String S2 = "Listened BlockPlaceEvent at {0}";
private static final String S3 = "Listened ChunkUnloadEvent at world: {0}, x: {1}, z: {2}";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

import com.ytdd9527.networksexpansion.core.listener.NetworksGuideListener;
import io.github.sefiraat.networks.Networks;
import io.github.sefiraat.networks.listeners.BlockListener;
import io.github.sefiraat.networks.listeners.ExplosiveToolListener;
import io.github.sefiraat.networks.listeners.SyncListener;
import org.bukkit.event.Listener;

public class ListenerManager {

public ListenerManager() {
addListener(new ExplosiveToolListener());
addListener(new BlockListener());
addListener(new SyncListener());
addListener(new NetworksGuideListener());
}

Expand Down

0 comments on commit 6c342e8

Please sign in to comment.