Skip to content

Commit 347234c

Browse files
committed
fix(bukkit): update PlayerAuthenticateListener constructor call
1 parent b851af7 commit 347234c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bukkit/src/main/java/com/nickuc/openlogin/bukkit/OpenLoginBukkit.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private void setupListeners() {
194194
pm.registerEvents(new PlayerGeneralListeners(this), this);
195195
pm.registerEvents(new PlayerJoinListeners(this), this);
196196
pm.registerEvents(new PlayerKickListeners(this), this);
197-
pm.registerEvents(new PlayerAuthenticateListener(this), this);
197+
pm.registerEvents(new PlayerAuthenticateListener(this, newUser), this);
198198
}
199199

200200
private void setupMetrics() {

0 commit comments

Comments
 (0)