Fix for skins on players with nicknames - send up account name as well

as display name.
This commit is contained in:
Mike Primm 2011-05-21 00:59:08 -05:00
parent 5a7ecea7d2
commit a3b680dd19
5 changed files with 11 additions and 6 deletions

View file

@ -15,7 +15,7 @@ componentconstructors['playermarkers'] = function(dynmap, configuration) {
.text(player.name));
if (configuration.showplayerfaces) {
getMinecraftHead(player.name, 32, function(head) {
getMinecraftHead(player.account, 32, function(head) {
$(head)
.addClass('playericon')
.prependTo(div);