| Total Complexity | 1 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | package net.labymod.serverapi.bukkit.listener; |
||
| 12 | public class PlayerJoinListener implements Listener { |
||
| 13 | |||
| 14 | @EventHandler |
||
| 15 | public void onJoin( PlayerJoinEvent event ) { |
||
| 16 | Player player = event.getPlayer(); |
||
| 17 | |||
| 18 | // Sending the permissions |
||
| 19 | LabyModPlugin.getInstance().sendPermissions( player ); |
||
| 20 | } |
||
| 23 |