summaryrefslogtreecommitdiffstats
path: root/src/control/Script2.cpp
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2021-01-14 21:15:12 +0100
committerNikolay Korolev <nickvnuk@gmail.com>2021-01-14 21:21:17 +0100
commitc00ebef329423482929fef5fd8a412e97eb17cad (patch)
treed1198bf2d1a0ae30439e3a4375466190f545e6a9 /src/control/Script2.cpp
parentremove scriptspath from premake (diff)
downloadre3-c00ebef329423482929fef5fd8a412e97eb17cad.tar
re3-c00ebef329423482929fef5fd8a412e97eb17cad.tar.gz
re3-c00ebef329423482929fef5fd8a412e97eb17cad.tar.bz2
re3-c00ebef329423482929fef5fd8a412e97eb17cad.tar.lz
re3-c00ebef329423482929fef5fd8a412e97eb17cad.tar.xz
re3-c00ebef329423482929fef5fd8a412e97eb17cad.tar.zst
re3-c00ebef329423482929fef5fd8a412e97eb17cad.zip
Diffstat (limited to 'src/control/Script2.cpp')
-rw-r--r--src/control/Script2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/control/Script2.cpp b/src/control/Script2.cpp
index 5cac2bfd..9ef24751 100644
--- a/src/control/Script2.cpp
+++ b/src/control/Script2.cpp
@@ -1349,9 +1349,9 @@ int8 CRunningScript::ProcessCommands400To499(int32 command)
CollectParameters(&m_nIp, 2);
CPed* pPed = CPools::GetPedPool()->GetAt(GET_INTEGER_PARAM(0));
script_assert(pPed);
- CVehicle* pVehicle = CPools::GetVehiclePool()->GetAt(GET_INTEGER_PARAM(1));
+ CObject* pObject = CPools::GetObjectPool()->GetAt(GET_INTEGER_PARAM(1));
pPed->bScriptObjectiveCompleted = false;
- pPed->SetObjective(OBJECTIVE_DESTROY_OBJECT, pVehicle);
+ pPed->SetObjective(OBJECTIVE_DESTROY_OBJECT, pObject);
return 0;
}
case COMMAND_SET_CHAR_OBJ_DESTROY_CAR: