Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | package net.labymod.serverapi.bukkit.event; |
||
15 | @AllArgsConstructor |
||
16 | @Getter |
||
17 | public class LabyModPlayerJoinEvent extends Event { |
||
18 | |||
19 | @Getter |
||
20 | private final static HandlerList handlerList = new HandlerList(); |
||
21 | |||
22 | private Player player; |
||
23 | private String modVersion; |
||
24 | private boolean chunkCachingEnabled; |
||
25 | private int chunkCachingVersion; |
||
26 | private List<Addon> addons; |
||
27 | |||
28 | @Override |
||
29 | public HandlerList getHandlers() { |
||
30 | return handlerList; |
||
31 | } |
||
34 |