Add missing member to serialisation.

This commit is contained in:
Matt 2019-02-08 16:37:56 +01:00
parent d87ca57e72
commit 9508044aa7
1 changed files with 1 additions and 2 deletions

View File

@ -50,13 +50,12 @@ public:
{ {
GameAction::Serialise(stream); GameAction::Serialise(stream);
stream << DS_TAG(_rideIndex) << DS_TAG(_price); stream << DS_TAG(_rideIndex) << DS_TAG(_price) << DS_TAG(_primaryPrice);
} }
GameActionResult::Ptr Query() const override GameActionResult::Ptr Query() const override
{ {
GameActionResult::Ptr res = std::make_unique<GameActionResult>(); GameActionResult::Ptr res = std::make_unique<GameActionResult>();
res->ExpenditureType = RCT_EXPENDITURE_TYPE_PARK_RIDE_TICKETS;
if (_rideIndex >= MAX_RIDES || _rideIndex == RIDE_ID_NULL) if (_rideIndex >= MAX_RIDES || _rideIndex == RIDE_ID_NULL)
{ {