Fixed SetView (by always hooking Spawn and precaching the needed dummy model rpgrocket.mdl)
This commit is contained in:
parent
ddfba00791
commit
8f18856e91
|
@ -90,8 +90,8 @@ void OnPluginsLoaded()
|
|||
g_pFunctionTable->pfnPlayerPostThink=PlayerPostThink_Post;
|
||||
|
||||
g_pFunctionTable->pfnSpawn=NULL; // "pfn_spawn"
|
||||
if (CheckForPublic("pfn_spawn"))
|
||||
g_pFunctionTable->pfnSpawn=Spawn;
|
||||
//if (CheckForPublic("pfn_spawn")) // JGHG: I commented this if out because we always need the Spawn to precache the rocket mdl used with SetView native
|
||||
g_pFunctionTable->pfnSpawn=Spawn;
|
||||
|
||||
g_pFunctionTable->pfnClientKill=NULL; // "client_kill"
|
||||
if (CheckForPublic("client_kill"))
|
||||
|
|
|
@ -20,6 +20,7 @@ CVector<EntClass *> Thinks;
|
|||
CVector<Touch *> Touches;
|
||||
KeyValueData *g_pkvd;
|
||||
bool g_inKeyValue=false;
|
||||
bool g_precachedStuff = false;
|
||||
|
||||
int fstrcmp(const char *s1, const char *s2)
|
||||
{
|
||||
|
@ -37,6 +38,11 @@ int fstrcmp(const char *s1, const char *s2)
|
|||
}
|
||||
|
||||
int Spawn(edict_t *pEntity) {
|
||||
if (!g_precachedStuff) {
|
||||
// Used for SetView, added by JGHG
|
||||
int returnValue = PRECACHE_MODEL("models/rpgrocket.mdl");
|
||||
g_precachedStuff = true;
|
||||
}
|
||||
if (SpawnForward != -1) {
|
||||
int retVal = 0;
|
||||
int id = ENTINDEX(pEntity);
|
||||
|
|
Loading…
Reference in New Issue
Block a user