Changeset 558 for trunk/CityProcessing.pas
- Timestamp:
- Apr 25, 2024, 6:31:34 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CityProcessing.pas
r550 r558 738 738 begin { all citizens were working -- worst tile no longer exploited } 739 739 Assert(1 shl V21 and Tiles <> 0); 740 Tiles := Tiles and not (1 shl V21);740 Tiles := Tiles and not (1 shl V21); 741 741 UsedByCity[TileLoc] := -1; 742 742 end … … 751 751 begin { disorder -- don't exploit tile } 752 752 Assert(1 shl V21 and Tiles <> 0); 753 Tiles := Tiles and not (1 shl V21);753 Tiles := Tiles and not (1 shl V21); 754 754 UsedByCity[TileLoc] := -1; 755 755 end; … … 841 841 and (FoodSurplus < 2)) and (FoodSurplus > 0) then 842 842 Inc(Money, FoodSurplus) 843 else if not (Disorder and (FoodSurplus > 0)) then843 else if not (Disorder and (FoodSurplus > 0)) then 844 844 begin { calculate new food storage } 845 845 Food := Food + FoodSurplus;
Note:
See TracChangeset
for help on using the changeset viewer.