Revert "refactor(Core/Movement): Naming convention" (#14100)

Revert "refactor(Core/Movement): Naming convention (#13989)"

This reverts commit d2f440c3e8.
This commit is contained in:
Skjalf
2022-12-10 23:53:09 -03:00
committed by GitHub
parent 35e4b935b8
commit 19fa22ba92
19 changed files with 148 additions and 149 deletions

View File

@@ -791,7 +791,7 @@ void MotionMaster::MoveRotate(uint32 time, RotateDirection direction)
Mutate(new RotateMovementGenerator(time, direction), MOTION_SLOT_ACTIVE);
}
void MotionMaster::PropagateSpeedChange()
void MotionMaster::propagateSpeedChange()
{
/*Impl::container_type::iterator it = Impl::c.begin();
for (; it != end(); ++it)
@@ -801,7 +801,7 @@ void MotionMaster::PropagateSpeedChange()
for (int i = 0; i <= _top; ++i)
{
if (Impl[i])
Impl[i]->UnitSpeedChanged();
Impl[i]->unitSpeedChanged();
}
}