mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 18:27:42 +00:00
Fix PowerBomb radius derp
This commit is contained in:
@@ -62,7 +62,8 @@ void CPowerBomb::Think(float dt, CStateManager& mgr) {
|
|||||||
|
|
||||||
if (x15c_curTime > 2.5f)
|
if (x15c_curTime > 2.5f)
|
||||||
x158_24_canStartFilter = false;
|
x158_24_canStartFilter = false;
|
||||||
} else if (x15c_curTime > 3.75 && x158_25_filterEnabled) {
|
} else {
|
||||||
|
if (x15c_curTime > 3.75 && x158_25_filterEnabled) {
|
||||||
mgr.GetCameraFilterPass(6).DisableFilter(.5f);
|
mgr.GetCameraFilterPass(6).DisableFilter(.5f);
|
||||||
x158_25_filterEnabled = false;
|
x158_25_filterEnabled = false;
|
||||||
}
|
}
|
||||||
@@ -76,11 +77,12 @@ void CPowerBomb::Think(float dt, CStateManager& mgr) {
|
|||||||
mgr.FreeScriptObject(GetUniqueId());
|
mgr.FreeScriptObject(GetUniqueId());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (x15c_curTime > 1.f && x15c_curTime < 4.f) {
|
if (x15c_curTime > 1.f && x15c_curTime < 4.f) {
|
||||||
x110_origDamageInfo.SetRadius(x160_curRadius);
|
x110_origDamageInfo.SetRadius(x160_curRadius);
|
||||||
ApplyDynamicDamage(GetTranslation(), mgr);
|
ApplyDynamicDamage(GetTranslation(), mgr);
|
||||||
x160_curRadius += x164_radiusIncrement;
|
x160_curRadius += dt * x164_radiusIncrement;
|
||||||
}
|
}
|
||||||
|
|
||||||
x168_particle->Update(dt);
|
x168_particle->Update(dt);
|
||||||
|
|||||||
2
specter
2
specter
Submodule specter updated: 4cf1da025b...23f7015125
Reference in New Issue
Block a user