[Easy-Tut] Spawn no fire

Newbie Spellweaver
Joined
May 31, 2016
Messages
15
Reaction score
9
[AI_Player.cpp]

Search:

// check weapon restrictions if(gClientLogic().localPlayer_) // check that we are in game { if ((gClientLogic().m_gameInfo.flags & GBGameInfo::SFLAGS_DisableASR) && wpn->getCategory() == storecat_ASR)
needExit = true;

Add below:
if (m_SpawnProtectedUntil && m_AuraType) needExit = true; // Prevent weapon squeeze when spawn
 
Last edited:
Back