Ignore:
Timestamp:
Sep 26, 2014, 2:02:03 PM (10 years ago)
Author:
chronos
Message:
  • Fixed: Do not show win probability for inner unit moves.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormMove.pas

    r60 r63  
    4343    DefendCount: Integer;
    4444    AttackCount: Integer;
     45    ShowWinProbability: Boolean;
    4546    procedure UpdateView;
    4647  end;
     
    7273procedure TFormMove.UpdateView;
    7374begin
     75  LabelWinProbability.Visible := ShowWinProbability;
     76  Label3.Visible := ShowWinProbability;
    7477  LabelWinProbability.Caption :=
    7578    IntToStr(Round(Core.Game.AttackProbability(AttackCount + SpinEditOnce.Value,
Note: See TracChangeset for help on using the changeset viewer.