diff --git a/sources/Players/EPlayer.uc b/sources/Players/EPlayer.uc index fb65b09..0371271 100644 --- a/sources/Players/EPlayer.uc +++ b/sources/Players/EPlayer.uc @@ -238,8 +238,7 @@ public final function Text GetOriginalName() * Returns current displayed name of the caller player. * * @return `Text` containing current name of the caller player. - * Guaranteed to not be `none`. Returned object is not managed by caller - * `EPlayer` and should be manually deallocated. + * Guaranteed to not be `none`. */ public final function Text GetName() { @@ -265,10 +264,6 @@ public final function SetName(Text newPlayerName) if (replicationInfo == none) { return; } - if (ConvertTextNameIntoString(newPlayerName) == replicationInfo.playerName) - { - return; - } oldPlayerName = _.text.FromFormattedString(replicationInfo.playerName); replicationInfo.playerName = CensorPlayerName(oldPlayerName, newPlayerName); _.memory.Free(oldPlayerName);