diff options
author | erorcun <erayorcunus@gmail.com> | 2020-09-10 02:21:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-10 02:21:23 +0200 |
commit | e9a7ab789d98c882cb1b27f476cd87e8ca919428 (patch) | |
tree | 232211f00519d9d659cab761515dfacfcc8c8796 /src/control | |
parent | Merge pull request #698 from majesticCoding/miami (diff) | |
parent | Peds objectives and wait states done, fixes (diff) | |
download | re3-e9a7ab789d98c882cb1b27f476cd87e8ca919428.tar re3-e9a7ab789d98c882cb1b27f476cd87e8ca919428.tar.gz re3-e9a7ab789d98c882cb1b27f476cd87e8ca919428.tar.bz2 re3-e9a7ab789d98c882cb1b27f476cd87e8ca919428.tar.lz re3-e9a7ab789d98c882cb1b27f476cd87e8ca919428.tar.xz re3-e9a7ab789d98c882cb1b27f476cd87e8ca919428.tar.zst re3-e9a7ab789d98c882cb1b27f476cd87e8ca919428.zip |
Diffstat (limited to 'src/control')
-rw-r--r-- | src/control/Script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/Script.cpp b/src/control/Script.cpp index b313e308..f7f9b058 100644 --- a/src/control/Script.cpp +++ b/src/control/Script.cpp @@ -3773,7 +3773,7 @@ int8 CRunningScript::ProcessCommands100To199(int32 command) CPed* pNearPed = ped->m_nearPeds[i]; if (pNearPed->m_leader == ped) { pNearPed->Teleport(pos); - pNearPed->PositionPedOutOfCollision(); // TODO(MIAMI): this is PositionAnyPedOutOfCollision!!! + pNearPed->PositionAnyPedOutOfCollision(); } } } |