2
0
mirror of https://github.com/alliedmodders/amxmodx.git synced 2025-04-16 14:32:33 +03:00

🔥 Remove old file check

This commit is contained in:
xPaw 2014-07-19 18:19:01 +03:00
parent d7a74ebb94
commit 1a633ec925

@ -466,8 +466,7 @@ char *CPluginMngr::ReadIntoOrFromCache(const char *file, size_t &bufsize)
pl->file = new CAmxxReader(file, sizeof(cell));
pl->buffer = NULL;
if (pl->file->GetStatus() != CAmxxReader::Err_None ||
pl->file->IsOldFile())
if (pl->file->GetStatus() != CAmxxReader::Err_None)
{
delete pl->file;
delete pl;