Fixed players not registering at all

This commit is contained in:
Rsl1122 2018-08-10 09:46:23 +03:00
parent d4f3e75f0e
commit 8e81560c0e
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ public class PlayerOnlineListener implements Listener {
new NameProcessor(uuid, playerName, displayName),
new PlayerPageUpdateProcessor(uuid)
)
);
).runTaskAsynchronously();
Processing.submit(new NetworkPageUpdateProcessor());
}

View File

@ -106,7 +106,7 @@ public class SpongePlayerListener {
new NameProcessor(uuid, playerName, displayName),
new PlayerPageUpdateProcessor(uuid)
)
);
).runTaskAsynchronously();
Processing.submit(new NetworkPageUpdateProcessor());
}