diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3339,7 +3339,7 @@ function search_supply_by_way(result, start, carts, ships) { let dist = search_dist[here]; let next_dist = dist + 8; if (can_supply_at(here, ships)) { - if (result) + if (Array.isArray(result)) map_set(result, here, dist); else return true; |