mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 15:21:44 +00:00
Elder:
VM 0-22-00 Client-side (BETA PENDING) -just removal of some debug messages
This commit is contained in:
parent
3d159ba382
commit
b85719ec34
3 changed files with 6 additions and 6 deletions
|
@ -565,7 +565,7 @@ static void CG_Say_f ( void ) {
|
||||||
|
|
||||||
cg.sayCount++;
|
cg.sayCount++;
|
||||||
|
|
||||||
CG_Printf("sayCount: %i sayTime: %i\n", cg.sayCount, cg.sayTime);
|
// CG_Printf("sayCount: %i sayTime: %i\n", cg.sayCount, cg.sayTime);
|
||||||
|
|
||||||
if (cg.sayCount > 4 && cg.time - cg.sayTime < 2000)
|
if (cg.sayCount > 4 && cg.time - cg.sayTime < 2000)
|
||||||
{
|
{
|
||||||
|
@ -595,7 +595,7 @@ static void CG_SayTeam_f ( void ) {
|
||||||
|
|
||||||
cg.sayCount++;
|
cg.sayCount++;
|
||||||
|
|
||||||
CG_Printf("sayCount: %i sayTime: %i\n", cg.sayCount, cg.sayTime);
|
// CG_Printf("sayCount: %i sayTime: %i\n", cg.sayCount, cg.sayTime);
|
||||||
|
|
||||||
if (cg.sayCount > 4 && cg.time - cg.sayTime < 2000)
|
if (cg.sayCount > 4 && cg.time - cg.sayTime < 2000)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1100,8 +1100,8 @@ static void CG_SetWeaponLerpFrame( clientInfo_t *ci, lerpFrame_t *lf, int newAni
|
||||||
if ( cg_debugAnim.integer ) {
|
if ( cg_debugAnim.integer ) {
|
||||||
CG_Printf( "Weapon Anim: %i\n", newAnimation );
|
CG_Printf( "Weapon Anim: %i\n", newAnimation );
|
||||||
// Elder: more info
|
// Elder: more info
|
||||||
CG_Printf( "Snap Weapon: %i\n", cg.snap->ps.weapon);
|
//CG_Printf( "Snap Weapon: %i\n", cg.snap->ps.weapon);
|
||||||
CG_Printf( "Desired Weapon: %i\n", cg.weaponSelect);
|
//CG_Printf( "Desired Weapon: %i\n", cg.weaponSelect);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Elder: reset frame so there is no lerping between new animations
|
//Elder: reset frame so there is no lerping between new animations
|
||||||
|
|
|
@ -3824,7 +3824,7 @@ static void CG_LocalLaser ()
|
||||||
//Create the laser entity if it's not there
|
//Create the laser entity if it's not there
|
||||||
if (cg.laserSight == qfalse)
|
if (cg.laserSight == qfalse)
|
||||||
{
|
{
|
||||||
CG_Printf("Initializing Local Laser...\n");
|
//CG_Printf("Initializing Local Laser...\n");
|
||||||
|
|
||||||
cg.laserSight = qtrue;
|
cg.laserSight = qtrue;
|
||||||
cg.laserEnt = CG_AllocLocalEntity();
|
cg.laserEnt = CG_AllocLocalEntity();
|
||||||
|
@ -3894,7 +3894,7 @@ void CG_CheckLaser()
|
||||||
//Disable laser
|
//Disable laser
|
||||||
else if (cg.laserSight == qtrue)
|
else if (cg.laserSight == qtrue)
|
||||||
{
|
{
|
||||||
CG_Printf("Destroying Local Laser...\n");
|
//CG_Printf("Destroying Local Laser...\n");
|
||||||
CG_FreeLocalEntity(cg.laserEnt);
|
CG_FreeLocalEntity(cg.laserEnt);
|
||||||
cg.laserSight = qfalse;
|
cg.laserSight = qfalse;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue