mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 15:11:36 -04:00
[Client] Bring drawState fallback for actors up-to-date w/ attack types
This commit is contained in:
parent
9d2cf6629b
commit
3f6ca6f22b
@ -304,12 +304,12 @@ void Cell::readAttack(ActorList& actorList)
|
||||
|
||||
// Set the correct drawState here if we've somehow we've missed a previous
|
||||
// AnimFlags packet
|
||||
if (actor->attack.type == mwmp::Attack::MELEE && actor->drawState != 1)
|
||||
if (actor->drawState != 1 && (actor->attack.type == mwmp::Attack::MELEE || actor->attack.type == mwmp::Attack::RANGED))
|
||||
{
|
||||
actor->drawState = 1;
|
||||
actor->setAnimFlags();
|
||||
}
|
||||
else if (actor->attack.type == mwmp::Attack::MAGIC && actor->drawState != 2)
|
||||
else if (actor->drawState != 2 && (actor->attack.type == mwmp::Attack::MAGIC || actor->attack.type == mwmp::Attack::ITEM_MAGIC))
|
||||
{
|
||||
actor->drawState = 2;
|
||||
actor->setAnimFlags();
|
||||
|
Loading…
x
Reference in New Issue
Block a user