MSRevive / MasterSwordRebirth

Continuation of Master Sword Classic/Continued.
https://msrebirth.net/
Other
9 stars 6 forks source link

Get rid of noclip anticheat #231

Open SaintWish opened 7 months ago

SaintWish commented 7 months ago

In the code there's this

//Anti-cheat
    if (!IsElite())
    {
        if ((pev->movetype == MOVETYPE_NOCLIP && pev->solid != SOLID_NOT) ||
            FBitSet(pev->flags, FL_GODMODE))
#ifndef RELEASE_LOCKDOWN
            ALERT(at_console, "Player attmpting to use Half-life Cheat! (In the public build this is a fatal error)\n");
#else
            exit(0);
#endif
    }

Should be removed and replaced with a simple if statement to disable character saving on FN if sv_cheats is turned on.