Changeset 558 for trunk/LocalPlayer/Nego.pas
- Timestamp:
- Apr 25, 2024, 6:31:34 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Nego.pas
r549 r558 373 373 begin // check techs 374 374 for I := 0 to nAdv - 1 do 375 if not (I in FutureTech) then375 if not (I in FutureTech) then 376 376 if (MyRO.Tech[I] < tsSeen) and 377 377 (MyRO.EnemyReport[DipMem[Me].pContact].Tech[I] >= tsApplicable) then … … 732 732 end; 733 733 Price := ButtonPrice[TButtonN(Sender).Tag and $FF]; 734 if not (Price shr 24 in OppoAllowed) then734 if not (Price shr 24 in OppoAllowed) then 735 735 Exit; 736 736 case Price of … … 845 845 end; 846 846 Price := ButtonPrice[TButtonN(Sender).Tag and $FF]; 847 if not (Price shr 24 in MyAllowed) then847 if not (Price shr 24 in MyAllowed) then 848 848 Exit; 849 849 case Price of … … 936 936 Exit; 937 937 NewCommand := TButtonN(Sender).Tag and $FF + scDipStart; 938 if not (NewCommand - scDipStart in CommandAllowed) then938 if not (NewCommand - scDipStart in CommandAllowed) then 939 939 Exit; 940 940 if (NewCommand = scDipCancelTreaty) and
Note:
See TracChangeset
for help on using the changeset viewer.