Skip to content

Commit

Permalink
Fix automatic displayname set triggering
Browse files Browse the repository at this point in the history
Some changes for 0.65 caused this to not function right. The result was that nearly every single new player has a blank profile name. That's really funny but its incorrect.
  • Loading branch information
poco0317 committed Jun 10, 2019
1 parent 7340889 commit b84d391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Themes/Til Death/BGAnimations/_PlayerInfo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ t[#t + 1] =
end,
SetCommand = function(self)
self:settextf("%s: %5.2f", profileName, playerRating)
if profileName == "Default Profile" then
if profileName == "Default Profile" or profileName == "" then
easyInputStringWithFunction(
"Choose a profile display name\nClicking your name will allow you to change it:",
64,
Expand Down

0 comments on commit b84d391

Please sign in to comment.