blob: 4feca505c6b88aa9e63516a9237851052e2b0778 (
plain)
1
2
3
4
5
6
7
|
#include "pch.h"
ON_DLL_LOAD("server.dll", MiscServerFixes, (CModule module))
{
// nop out call to VGUI shutdown since it crashes the game when quitting from the console
module.Offset(0x154A96).NOP(5);
}
|