1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 04:53:12 +01:00

Fix peep thought desync issues and handle >255 rides

This commit is contained in:
duncanspumpkin
2021-05-28 17:38:44 +01:00
parent 3e357e6148
commit 35c8fee368
2 changed files with 3 additions and 3 deletions

View File

@@ -1700,7 +1700,7 @@ namespace OpenRCT2
cs.ReadWrite(guest.PreviousRideTimeOut);
cs.ReadWriteArray(guest.Thoughts, [&cs](rct_peep_thought& thought) {
cs.ReadWrite(thought.type);
cs.ReadWrite(thought.item);
cs.ReadWrite(thought.argument);
cs.ReadWrite(thought.freshness);
cs.ReadWrite(thought.fresh_timeout);
return true;