1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-18 11:53:12 +00:00

fixed SET_BOAT_CRUISE_SPEED

This commit is contained in:
Nikolay Korolev 2020-02-02 14:09:39 +03:00 committed by GitHub
parent bedf19c523
commit b0e4f40f44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5826,7 +5826,7 @@ int8 CRunningScript::ProcessCommands700To799(int32 command)
assert(pVehicle);
assert(pVehicle->m_vehType == VEHICLE_TYPE_BOAT);
CBoat* pBoat = (CBoat*)pVehicle;
pBoat->AutoPilot.m_nCruiseSpeed = ScriptParams[1];
pBoat->AutoPilot.m_nCruiseSpeed = *(float*)&ScriptParams[1];
return 0;
}
case COMMAND_GET_RANDOM_CHAR_IN_AREA: