mirror of https://github.com/AxioDL/metaforce.git
CScriptPlatform: Amend delta time value in AcceptScriptMsg for deletion
Game code makes use of 1.66666675f here, not 0.0f.
This commit is contained in:
parent
cbf7140d21
commit
c944d04614
|
@ -144,7 +144,7 @@ void CScriptPlatform::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, C
|
|||
CScriptColorModulate::FadeOutHelper(mgr, GetUniqueId(), x26c_fadeOutTime);
|
||||
break;
|
||||
case EScriptObjectMessage::Deleted:
|
||||
DecayRiders(x318_riders, 0.f, mgr);
|
||||
DecayRiders(x318_riders, 1.66666675f, mgr);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue