Log uuid of fake players

This commit is contained in:
tanyaofei 2024-08-08 17:42:20 +08:00
parent 94706797c7
commit b522e816e7
2 changed files with 1 additions and 1 deletions

View File

@ -94,6 +94,7 @@ public class FakeplayerManager {
this.checkLimit(creator);
var sn = name == null ? nameManager.register(creator) : nameManager.specify(name);
log.info("UUID of fake player %s is %s".formatted(sn.name(), sn.uuid()));
var fp = new FakePlayer(
creator,

View File

@ -106,7 +106,6 @@ public class NameManager {
continue;
}
profileRepository.insert(name, uuid);
log.info("Fake player '%s' will use '%s' as his UUID".formatted(name, uuid));
return uuid;
}