diff --git a/src/C4Object.cpp b/src/C4Object.cpp index 369b9cf2f..03e343026 100644 --- a/src/C4Object.cpp +++ b/src/C4Object.cpp @@ -3601,8 +3601,8 @@ void C4Object::AutoStopDirectCom(uint8_t byCom, int32_t iData) // By DirecCom if (Action.Dir == DIR_Left) ObjectComLetGo(this, +1); else AutoStopUpdateComDir(); break; - case COM_Jump: ObjectComLetGo(this, (Action.Dir == DIR_Left) ? +1 : -1); - case COM_Dig: ObjectComLetGo(this, (Action.Dir == DIR_Left) ? +1 : -1); + case COM_Jump: + case COM_Dig: ObjectComLetGo(this, (Action.Dir == DIR_Left) ? +1 : -1); break; case COM_Throw: PlayerObjectCommand(Owner, C4CMD_Drop); break; default: AutoStopUpdateComDir(); }