From 7958c095d04f00cff91663788ff99e1310606c1a Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 12 Sep 2022 12:58:05 +0200 Subject: [PATCH] ads-game:: clear rocks near to the starting point --- rogueviz/ads/ads-game.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rogueviz/ads/ads-game.cpp b/rogueviz/ads/ads-game.cpp index c19fd400..16657539 100644 --- a/rogueviz/ads/ads-game.cpp +++ b/rogueviz/ads/ads-game.cpp @@ -41,6 +41,7 @@ void run_ads_game() { gen_terrain(c, ci_at[c], -2); forCellEx(c1, c) ci_at[c1].type = wtNone; ci_at[c].type = wtNone; + ci_at[c].rocks.clear(); }); vctrV = ads_matrix(Id, 0); rogueviz::rv_hook(hooks_prestats, 100, view_ads_game);