diff options
author | aap <aap@papnet.eu> | 2020-05-21 10:32:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 10:32:11 +0200 |
commit | bc4d62894014d06f24786c59606c05a8fec7d5c8 (patch) | |
tree | df2197b26038bf47d91998bbb173f519e81ec5b6 /src/peds | |
parent | Pickup and audio fix (diff) | |
parent | script revision (diff) | |
download | re3-bc4d62894014d06f24786c59606c05a8fec7d5c8.tar re3-bc4d62894014d06f24786c59606c05a8fec7d5c8.tar.gz re3-bc4d62894014d06f24786c59606c05a8fec7d5c8.tar.bz2 re3-bc4d62894014d06f24786c59606c05a8fec7d5c8.tar.lz re3-bc4d62894014d06f24786c59606c05a8fec7d5c8.tar.xz re3-bc4d62894014d06f24786c59606c05a8fec7d5c8.tar.zst re3-bc4d62894014d06f24786c59606c05a8fec7d5c8.zip |
Diffstat (limited to 'src/peds')
-rw-r--r-- | src/peds/Ped.cpp | 1 | ||||
-rw-r--r-- | src/peds/Ped.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/peds/Ped.cpp b/src/peds/Ped.cpp index 06012379..539bbfaf 100644 --- a/src/peds/Ped.cpp +++ b/src/peds/Ped.cpp @@ -602,6 +602,7 @@ CPed::CPed(uint32 pedType) : m_pedIK(this) bTurnedAroundOnAttractor = false; bCarPassenger = false; bMiamiViceCop = false; + bMoneyHasBeenGivenByScript = false; bIsDrowning = false; bCanDrownInWater = true; diff --git a/src/peds/Ped.h b/src/peds/Ped.h index 07c44fd5..4452c13a 100644 --- a/src/peds/Ped.h +++ b/src/peds/Ped.h @@ -441,7 +441,7 @@ public: //uint32 b155_8 //uint32 b155_10 uint32 bMiamiViceCop : 1; - //uint32 b155_40 + uint32 bMoneyHasBeenGivenByScript : 1; // //uint32 b155_80 uint32 bIsDrowning : 1; |