This commit is contained in:
Your Name 2020-09-11 22:34:26 -06:00
parent aa0b4d5f6d
commit 5da49c2f7f

View File

@ -191,6 +191,7 @@ onPlayerSpawned()
self thread grenade_watch(); self thread grenade_watch();
self thread lockon_watch(); self thread lockon_watch();
self thread jav_loc_watch(); self thread jav_loc_watch();
self thread ti_fix();
self thread adsHack(); self thread adsHack();
self thread fireHack(); self thread fireHack();
@ -204,6 +205,22 @@ onPlayerSpawned()
} }
} }
ti_fix()
{
self endon("disconnect");
self endon("death");
for (;;)
{
self waittill( "grenade_fire", lightstick, weapName );
if ( weapName != "flare_mp" )
continue;
self.TISpawnPosition = self.origin;
}
}
jav_loc_watch() jav_loc_watch()
{ {
self endon("disconnect"); self endon("disconnect");