Final batch of .name changes

This commit is contained in:
Lucas Nicodemus 2017-04-19 17:41:15 -06:00
parent 2dee3edb3d
commit b8dbdb9ff4
No known key found for this signature in database
GPG key ID: CEE668CCE1BF2C7C
4 changed files with 23 additions and 23 deletions

View file

@ -940,9 +940,9 @@ namespace TShockAPI
{"registered", player.User?.Registered},
{"muted", player.mute },
{"position", player.TileX + "," + player.TileY},
{"inventory", string.Join(", ", inventory.Select(p => (p.name + ":" + p.stack)))},
{"inventory", string.Join(", ", inventory.Select(p => (p.Name + ":" + p.stack)))},
{"armor", string.Join(", ", equipment.Select(p => (p.netID + ":" + p.prefix)))},
{"dyes", string.Join(", ", dyes.Select(p => (p.name)))},
{"dyes", string.Join(", ", dyes.Select(p => (p.Name)))},
{"buffs", string.Join(", ", player.TPlayer.buffType)}
};
}