mirror of https://github.com/LOOHP/Limbo.git
Fixed PlayerResourcePackStatusEvent, Status was null as it was never declared, also throwing a super(player) in the constructor wasn't working for some reason so I added a player declaration as well.
This commit is contained in:
parent
0ac9810554
commit
8fa1b504f2
|
|
@ -29,6 +29,8 @@ public class PlayerResourcePackStatusEvent extends PlayerEvent {
|
|||
|
||||
public PlayerResourcePackStatusEvent(Player player, EnumResourcePackStatus status) {
|
||||
super(player);
|
||||
this.player = player;
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue