summaryrefslogtreecommitdiffstats
path: root/src/test/java/FakePlayerJoinEvent.java
blob: fa605435644d4d1b7692d79e5a66e80c627b5869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.bukkit.entity.Player;
import org.bukkit.event.player.PlayerJoinEvent;

/**
 * fake join event for testing (implements 1.12.2)
 */
public class FakePlayerJoinEvent extends PlayerJoinEvent {

    public FakePlayerJoinEvent(Player playerJoined, String joinMessage) {
        super(playerJoined, joinMessage);
    }

}