Fix first time players

This commit is contained in:
fullwall 2022-02-11 18:46:11 +08:00
parent c60085eade
commit 3ca65765a3

View File

@ -742,7 +742,7 @@ public class NPCCommands {
}
OfflinePlayer player = Bukkit.getOfflinePlayer(name);
if (!player.hasPlayedBefore()) {
if (!player.hasPlayedBefore() && !player.isOnline()) {
NPCCommandSelector.Callback callback = new NPCCommandSelector.Callback() {
@Override
public void run(NPC followingNPC) throws CommandException {
@ -1465,7 +1465,7 @@ public class NPCCommands {
UUID uuid;
if (args.getString(1).equalsIgnoreCase("SERVER")) {
uuid = null;
} else if ((p = Bukkit.getOfflinePlayer(args.getString(1))).hasPlayedBefore()) {
} else if ((p = Bukkit.getOfflinePlayer(args.getString(1))).hasPlayedBefore() || p.isOnline()) {
uuid = p.getUniqueId();
} else {
uuid = UUID.fromString(args.getString(1));