1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2024-10-17 22:01:07 +00:00
This commit is contained in:
Nikolay Korolev 2021-01-12 20:54:52 +03:00
parent 99a6976f53
commit 6cfc61ac0e

View file

@ -106,7 +106,10 @@ int8 CRunningScript::ProcessCommands800To899(int32 command)
printf("Couldn't find zone - %s\n", zone); printf("Couldn't find zone - %s\n", zone);
return 0; return 0;
} }
CTheZones::SetPedGroup(zone_id, ScriptParams[0], ScriptParams[1]); while (zone_id >= 0) {
CTheZones::SetPedGroup(zone_id, ScriptParams[0], ScriptParams[1]);
zone_id = CTheZones::FindNextZoneByLabelAndReturnIndex(zone, ZONE_INFO);
}
return 0; return 0;
} }
case COMMAND_START_CAR_FIRE: case COMMAND_START_CAR_FIRE: