Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit fe46411

Browse files
committed
Small stuff
1 parent 09612a8 commit fe46411

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Entities/AHuman.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3538,7 +3538,7 @@ void AHuman::Update()
35383538
}
35393539
}
35403540

3541-
if (!pThrown && m_ArmsState == THROWING_PREP) {
3541+
if (m_ArmsState == THROWING_PREP && !pThrown) {
35423542
m_ArmsState = WEAPON_READY;
35433543
}
35443544

@@ -3570,7 +3570,7 @@ void AHuman::Update()
35703570
if (pMO) {
35713571
pMO->SetPos(m_Pos + Vector(m_HFlipped ? -10 : 10, -8));
35723572
Vector tossVec(5.0F + 2.0F * RandomNormalNum(), -2.0F + 1.0F * RandomNormalNum());
3573-
pMO->SetVel(tossVec.GetXFlipped(m_HFlipped) *m_Rotation);
3573+
pMO->SetVel(tossVec.GetXFlipped(m_HFlipped) * m_Rotation);
35743574
pMO->SetAngularVel(5.0F * RandomNormalNum());
35753575
if (pMO->IsDevice()) {
35763576
g_MovableMan.AddItem(pMO);

0 commit comments

Comments
 (0)