mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-05 15:14:08 +00:00
more 1.1 patch
This commit is contained in:
parent
05ddc80ea2
commit
0b12cacf15
4 changed files with 21 additions and 3 deletions
|
@ -9649,6 +9649,16 @@ int8 CRunningScript::ProcessCommands1100To1199(int32 command)
|
|||
CPed::nEnterCarRangeMultiplier = (float)ScriptParams[0];
|
||||
#endif
|
||||
return 0;
|
||||
#endif
|
||||
#ifndef GTA3_1_1_PATCH
|
||||
case COMMAND_SET_THREAT_REACTION_RANGE_MULTIPLIER:
|
||||
CollectParameters(&m_nIp, 1);
|
||||
#ifdef FIX_BUGS
|
||||
CPed::nThreatReactionRangeMultiplier = *(float*)&ScriptParams[0];
|
||||
#else
|
||||
CPed::nThreatReactionRangeMultiplier = (float)ScriptParams[0];
|
||||
#endif
|
||||
return 0;
|
||||
#endif
|
||||
default:
|
||||
assert(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue