From 962757759627fd6933c3b03321bdb8ae0d5c5e6d Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Sat, 28 Jul 2018 23:46:09 +0200 Subject: Fix: HouseSpec::watched_cargoes not 64 bit Looks like HouseSpec::watched_cargoes was missed in the conversion to 64 cargo types. --- src/house.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/house.h b/src/house.h index ddc2a448c..94ef62ad5 100644 --- a/src/house.h +++ b/src/house.h @@ -120,7 +120,7 @@ struct HouseSpec { AnimationInfo animation; ///< information about the animation. byte processing_time; ///< Periodic refresh multiplier 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; -- cgit v1.2.3-54-g00ecf