チケット #48739

actres_possible() should iterate unit cargo, not tile units

登録: 2023-09-28 15:03 最終更新: 2023-09-28 15:03

報告者:
担当者:
(未割り当て)
チケットの種類:
状況:
オープン
コンポーネント:
マイルストーン:
(未割り当て)
優先度:
5 - 中
重要度:
5 - 中
解決法:
なし
ファイル:
なし

詳細

actres_possible() ACTRES_MOVE_UNIT handling:

    /* We cannot move a transport into a tile that holds
     * units or cities not allied with ani of our cargo. */
    if (get_transporter_capacity(actor->unit) > 0) {
      unit_list_iterate(unit_tile(actor->unit)->units, pcargo) {
        if (unit_contained_in(pcargo, actor->unit)
            && (is_non_allied_unit_tile(target->tile, unit_owner(pcargo))
                || is_non_allied_city_tile(target->tile,
                                           unit_owner(pcargo)))) {
           return TRI_NO;
        }
      } unit_list_iterate_end;
    }

That should be simply iteration over actor's cargo.

チケットの履歴 (1 件中 1 件表示)

2023-09-28 15:03 更新者: cazfi
  • 新しいチケット "actres_possible() should iterate unit cargo, not tile units" が作成されました

添付ファイルリスト

添付ファイルはありません

編集

このチケットにコメントを追加するには、ログインが必要です » ログインする