Skip to content

Commit fc07e9e

Browse files
committed
Fix build
1 parent c5ed845 commit fc07e9e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/world/entity/Mob.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Mob::Mob(Level* pLevel) : Entity(pLevel)
2424
m_hurtDuration = 0;
2525
m_hurtDir = 0.0f;
2626
field_110 = 0;
27-
field_114 = 0;
27+
m_attackTime = 0;
2828
m_oTilt = 0.0f;
2929
m_tilt = 0.0f;
3030
field_120 = 0;
@@ -259,7 +259,7 @@ void Mob::baseTick()
259259

260260
m_oTilt = m_tilt;
261261

262-
if (field_114 > 0) field_114--;
262+
if (m_attackTime > 0) m_attackTime--;
263263
if (m_hurtTime > 0) m_hurtTime--;
264264
if (field_B8 > 0) field_B8--;
265265

0 commit comments

Comments
 (0)