We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5ddf32 commit 0fbd88aCopy full SHA for 0fbd88a
rts/Sim/Units/Unit.cpp
@@ -1024,13 +1024,15 @@ void CUnit::SlowUpdate()
1024
if (health <= 0.0f || buildProgress <= 0.0f)
1025
KillUnit(nullptr, false, true, -CSolidObject::DAMAGE_CONSTRUCTION_DECAY);
1026
}
1027
+ moveType->SlowUpdate();
1028
1029
ScriptDecloak(nullptr, nullptr);
1030
return;
1031
1032
- // below is stuff that should not be run while being built
1033
+ // should not be run while being built
1034
commandAI->SlowUpdate();
1035
+
1036
moveType->SlowUpdate();
1037
1038
0 commit comments