mirror of https://github.com/OpenTTD/OpenTTD
Fix: HouseSpec::watched_cargoes not 64 bit
Looks like HouseSpec::watched_cargoes was missed in the conversion to 64 cargo types.pull/6876/head
parent
64dac65e20
commit
9627577596
|
@ -120,7 +120,7 @@ struct HouseSpec {
|
||||||
AnimationInfo animation; ///< information about the animation.
|
AnimationInfo animation; ///< information about the animation.
|
||||||
byte processing_time; ///< Periodic refresh multiplier
|
byte processing_time; ///< Periodic refresh multiplier
|
||||||
byte minimum_life; ///< The minimum number of years this house will survive before the town rebuilds it
|
byte minimum_life; ///< The minimum number of years this house will survive before the town rebuilds it
|
||||||
uint32 watched_cargoes; ///< Cargo types watched for acceptance.
|
CargoTypes watched_cargoes; ///< Cargo types watched for acceptance.
|
||||||
|
|
||||||
Money GetRemovalCost() const;
|
Money GetRemovalCost() const;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue