removed unstuck call from deja vu since setpos_exact already has one

This commit is contained in:
Pinsplash 2024-05-06 20:12:15 -05:00
parent fa02b46e2a
commit b819b6579a
2 changed files with 0 additions and 8 deletions

View File

@ -555,8 +555,6 @@ class CEDejaVu : public CChaosEffect
{
public:
void StartEffect() override;
void MaintainEffect() override;
bool m_bDone = false;
};
class CERandomCC : public CChaosEffect
{

View File

@ -9290,12 +9290,6 @@ void CEDejaVu::StartEffect()
{
engine->ClientCommand(engine->PEntityOfEntIndex(1), "reload setpos");
}
void CEDejaVu::MaintainEffect()
{
if (!m_bDone)
UTIL_GetLocalPlayer()->GetUnstuck(500);
m_bDone = true;
}
void CERandomCC::StartEffect()
{
engine->ClientCommand(engine->PEntityOfEntIndex(1), "cc_generate");