diff --git a/lua/app/userdata/battle/battle_grid_entity.lua b/lua/app/userdata/battle/battle_grid_entity.lua index 1e8608c8..73e5acf0 100644 --- a/lua/app/userdata/battle/battle_grid_entity.lua +++ b/lua/app/userdata/battle/battle_grid_entity.lua @@ -84,6 +84,9 @@ function BattleGridEntity:isElmentTypeInvalid() end function BattleGridEntity:addAroundEliminationCount(boomType) + if self:getIsIdle() then + return false + end local nextGridType = BattleConst.AROUND_ELIMINATION_TO_TYPE_COUNT[self.gridType] if nextGridType then local beforeGridtype = self:getGridType()