Fix PowerBomb radius derp

This commit is contained in:
Phillip Stephens 2020-09-23 16:32:15 -07:00
parent 3d01549af3
commit 9ab8c4cd8b
Signed by: Antidote
GPG Key ID: F8BEE4C83DACA60D
2 changed files with 15 additions and 13 deletions

View File

@ -62,25 +62,27 @@ void CPowerBomb::Think(float dt, CStateManager& mgr) {
if (x15c_curTime > 2.5f)
x158_24_canStartFilter = false;
} else if (x15c_curTime > 3.75 && x158_25_filterEnabled) {
mgr.GetCameraFilterPass(6).DisableFilter(.5f);
x158_25_filterEnabled = false;
}
} else {
if (x15c_curTime > 3.75 && x158_25_filterEnabled) {
mgr.GetCameraFilterPass(6).DisableFilter(.5f);
x158_25_filterEnabled = false;
}
if (x15c_curTime > 7.f) {
if (x168_particle->IsSystemDeletable())
if (x15c_curTime > 7.f) {
if (x168_particle->IsSystemDeletable())
mgr.FreeScriptObject(GetUniqueId());
}
if (x15c_curTime > 30.f) {
mgr.FreeScriptObject(GetUniqueId());
}
if (x15c_curTime > 30.f) {
mgr.FreeScriptObject(GetUniqueId());
return;
return;
}
}
if (x15c_curTime > 1.f && x15c_curTime < 4.f) {
x110_origDamageInfo.SetRadius(x160_curRadius);
ApplyDynamicDamage(GetTranslation(), mgr);
x160_curRadius += x164_radiusIncrement;
x160_curRadius += dt * x164_radiusIncrement;
}
x168_particle->Update(dt);

@ -1 +1 @@
Subproject commit 4cf1da025bc9a3a4e75ed2fbc8f3a8ff77e7ce33
Subproject commit 23f70151250ac08c78559ad71bf92e80912e678d