From: Holger Schemel Date: Fri, 6 Jan 2023 23:31:50 +0000 (+0100) Subject: fixed broken graphics of opening gray ball in MM engine X-Git-Tag: 4.3.5.0~49 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=85f413391130da1d27d7f11575bc5a0bf52d7d53;p=rocksndiamonds.git fixed broken graphics of opening gray ball in MM engine --- diff --git a/src/game_mm/mm_tools.c b/src/game_mm/mm_tools.c index 3a3aa2e8..a8edba4e 100644 --- a/src/game_mm/mm_tools.c +++ b/src/game_mm/mm_tools.c @@ -524,6 +524,8 @@ void DrawElement_MM(int x, int y, int element) laser.fuse_x == x && laser.fuse_y == y) DrawGraphic_MM(x, y, IMG_MM_FUSE); + else if (element == EL_GRAY_BALL_OPENING) + DrawGraphic_MM(x, y, el_act2gfx(EL_BALL_GRAY, MM_ACTION_OPENING)); else DrawGraphic_MM(x, y, el2gfx(element)); }