mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-26 09:41:49 +01:00
script fix
This commit is contained in:
parent
e248cbcc7d
commit
8c510a8d5b
@ -11364,7 +11364,7 @@ int8 CRunningScript::ProcessCommands1300To1399(int32 command)
|
|||||||
case COMMAND_CLEAR_CHAR_FOLLOW_PATH:
|
case COMMAND_CLEAR_CHAR_FOLLOW_PATH:
|
||||||
{
|
{
|
||||||
CollectParameters(&m_nIp, 2);
|
CollectParameters(&m_nIp, 2);
|
||||||
CPed* pPed = CWorld::Players[ScriptParams[0]].m_pPed;
|
CPed* pPed = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
assert(pPed);
|
assert(pPed);
|
||||||
if (pPed->GetPedState() == PED_FOLLOW_PATH) {
|
if (pPed->GetPedState() == PED_FOLLOW_PATH) {
|
||||||
pPed->RestorePreviousState();
|
pPed->RestorePreviousState();
|
||||||
@ -11375,7 +11375,7 @@ int8 CRunningScript::ProcessCommands1300To1399(int32 command)
|
|||||||
case COMMAND_SET_CHAR_CAN_BE_SHOT_IN_VEHICLE:
|
case COMMAND_SET_CHAR_CAN_BE_SHOT_IN_VEHICLE:
|
||||||
{
|
{
|
||||||
CollectParameters(&m_nIp, 2);
|
CollectParameters(&m_nIp, 2);
|
||||||
CPed* pPed = CWorld::Players[ScriptParams[0]].m_pPed;
|
CPed* pPed = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
assert(pPed);
|
assert(pPed);
|
||||||
pPed->bCanBeShotInVehicle = ScriptParams[1];
|
pPed->bCanBeShotInVehicle = ScriptParams[1];
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user