Skip to content
This repository has been archived by the owner on Jun 6, 2019. It is now read-only.

Small Bukkit packet listener with 1.8 to 1.13.2 support !

License

Notifications You must be signed in to change notification settings

MrMicky-FR/FastPacketListener

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FastPacketListener

How to use

        // Create a new packet listener for the plugin
        FastPacketListener packetListener = new FastPacketListener(this);

        // Add a packet handler
        packetListener.addHandler((player, channel, packet, direction) -> {            

            if (something) {
                // When 'false' is returned the packet is cancelled
                return false;
            }
            
            return true; // The packet is not cancelled
        });

TODO

  • Finish README
  • Add JavaDoc
  • Deploy to an other maven repo

About

Small Bukkit packet listener with 1.8 to 1.13.2 support !

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages