mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 19:50:38 +02:00
Update avatar billboard loading to use packet.readAll()
This commit is contained in:
parent
71866d52ed
commit
38591a8edb
1 changed files with 1 additions and 1 deletions
|
@ -911,7 +911,7 @@ QByteArray AvatarData::identityByteArray() {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool AvatarData::hasBillboardChangedAfterParsing(NLPacket& packet) {
|
bool AvatarData::hasBillboardChangedAfterParsing(NLPacket& packet) {
|
||||||
QByteArray newBillboard = QByteArray(packet.getPayload());
|
QByteArray newBillboard = packet.readAll();
|
||||||
if (newBillboard == _billboard) {
|
if (newBillboard == _billboard) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue