Commit 0d837c57b81494a88e6c364910b449f3173e3aef
1 parent
a0f3a52d
Exists in
master
runner: fix typo
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
experiment_runner/units/game_actors.pas
@@ -731,7 +731,7 @@ end; | @@ -731,7 +731,7 @@ end; | ||
731 | procedure TConsequence.PresentPoints(APlayerBox: TPlayerBox; G: TLabel); | 731 | procedure TConsequence.PresentPoints(APlayerBox: TPlayerBox; G: TLabel); |
732 | begin | 732 | begin |
733 | if gscG in FStyle then | 733 | if gscG in FStyle then |
734 | - G.Caption:= IntToStr(StrToInt(G.Caption) + FP.ResultAsInteger) | 734 | + G.Caption:= IntToStr(StrToInt(G.Caption) + FP.ResultAsInteger); |
735 | 735 | ||
736 | if (gscI in FStyle) or (gscA in FStyle) or (gscB in FStyle) then | 736 | if (gscI in FStyle) or (gscA in FStyle) or (gscB in FStyle) then |
737 | if Assigned(APlayerBox) then | 737 | if Assigned(APlayerBox) then |