[10872] Grr, restore code style.

This commit is contained in:
VladimirMangos 2010-12-13 22:07:49 +03:00
parent 1a7dce690a
commit e9719d5844
2 changed files with 9 additions and 9 deletions

View file

@ -8273,14 +8273,14 @@ void Unit::UpdateSpeed(UnitMoveType mtype, bool forced, float ratio)
{
switch(mtype)
{
case MOVE_RUN:
speed *= ((Creature*)this)->GetCreatureInfo()->speed_run;
break;
case MOVE_WALK:
speed *= ((Creature*)this)->GetCreatureInfo()->speed_walk;
break;
default:
break;
case MOVE_RUN:
speed *= ((Creature*)this)->GetCreatureInfo()->speed_run;
break;
case MOVE_WALK:
speed *= ((Creature*)this)->GetCreatureInfo()->speed_walk;
break;
default:
break;
}
}