mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-02-07 17:11:22 +00:00
Removed various comments
This commit is contained in:
parent
360a3cc882
commit
6d4576f314
5 changed files with 88 additions and 88 deletions
|
@ -350,10 +350,10 @@ static void PM_Accelerate( vec3_t wishdir, float wishspeed, float accel ) {
|
||||||
normal = pml.groundTrace.plane.normal[2];
|
normal = pml.groundTrace.plane.normal[2];
|
||||||
if (normal > 0)
|
if (normal > 0)
|
||||||
{
|
{
|
||||||
Com_Printf("(%f)",wishspeed);
|
// Com_Printf("(%f)",wishspeed);
|
||||||
temp = wishspeed;
|
temp = wishspeed;
|
||||||
wishspeed *= (2 - normal);
|
wishspeed *= (2 - normal);
|
||||||
Com_Printf(" (%f) (%f)\n", wishspeed-temp, normal);
|
// Com_Printf(" (%f) (%f)\n", wishspeed-temp, normal);
|
||||||
}
|
}
|
||||||
//Blaze: end new ramp jump code
|
//Blaze: end new ramp jump code
|
||||||
VectorScale( wishdir, wishspeed, wishVelocity );
|
VectorScale( wishdir, wishspeed, wishVelocity );
|
||||||
|
@ -829,7 +829,7 @@ static void PM_LimpMove( void)
|
||||||
|
|
||||||
if ( pm->cmd.serverTime % 1000 > 333)
|
if ( pm->cmd.serverTime % 1000 > 333)
|
||||||
{
|
{
|
||||||
Com_Printf("(%d)\n",pm->cmd.serverTime % 1000);
|
// Com_Printf("(%d)\n",pm->cmd.serverTime % 1000);
|
||||||
if ( PM_CheckJump () ) {
|
if ( PM_CheckJump () ) {
|
||||||
// jumped away
|
// jumped away
|
||||||
if ( pm->waterlevel > 1 ) {
|
if ( pm->waterlevel > 1 ) {
|
||||||
|
|
|
@ -1328,7 +1328,7 @@ void ClientThink_real( gentity_t *ent ) {
|
||||||
ent->client->fastReloads &&
|
ent->client->fastReloads &&
|
||||||
ent->client->reloadAttempts > 0)
|
ent->client->reloadAttempts > 0)
|
||||||
{
|
{
|
||||||
G_Printf("(%i) ClientThink: attempting M3 fast-reload...\n", ent->s.clientNum);
|
//G_Printf("(%i) ClientThink: attempting M3 fast-reload...\n", ent->s.clientNum);
|
||||||
Cmd_Reload( ent );
|
Cmd_Reload( ent );
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1338,7 +1338,7 @@ void ClientThink_real( gentity_t *ent ) {
|
||||||
ent->client->fastReloads &&
|
ent->client->fastReloads &&
|
||||||
ent->client->reloadAttempts > 0)
|
ent->client->reloadAttempts > 0)
|
||||||
{
|
{
|
||||||
G_Printf("(%i) ClientThink: attempting SSG fast-reload...\n", ent->s.clientNum);
|
//G_Printf("(%i) ClientThink: attempting SSG fast-reload...\n", ent->s.clientNum);
|
||||||
Cmd_Reload( ent );
|
Cmd_Reload( ent );
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -680,7 +680,7 @@ void Reached_BinaryMover( gentity_t *ent ) {
|
||||||
//Also added "touch" and "takedamage" check so we are only abusing doors
|
//Also added "touch" and "takedamage" check so we are only abusing doors
|
||||||
if ( (ent->spawnflags & SP_DOORTOGGLE) == SP_DOORTOGGLE ) { //||
|
if ( (ent->spawnflags & SP_DOORTOGGLE) == SP_DOORTOGGLE ) { //||
|
||||||
//ent->touch || (ent->takedamage == qtrue) ) {
|
//ent->touch || (ent->takedamage == qtrue) ) {
|
||||||
G_Printf("Sliding Toggle Door used\n");
|
//G_Printf("Sliding Toggle Door used\n");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// return to pos1 after a delay
|
// return to pos1 after a delay
|
||||||
|
@ -722,7 +722,7 @@ void Reached_BinaryMover( gentity_t *ent ) {
|
||||||
//if ( ( (ent->spawnflags & SP_NODOORTOGGLE) == SP_NODOORTOGGLE ) ||
|
//if ( ( (ent->spawnflags & SP_NODOORTOGGLE) == SP_NODOORTOGGLE ) ||
|
||||||
if ( (ent->spawnflags & SP_DOORTOGGLE) == SP_DOORTOGGLE ) { //||
|
if ( (ent->spawnflags & SP_DOORTOGGLE) == SP_DOORTOGGLE ) { //||
|
||||||
//ent->touch || (ent->takedamage == qtrue) ) {
|
//ent->touch || (ent->takedamage == qtrue) ) {
|
||||||
G_Printf("Rotating Toggle Door used\n");
|
//G_Printf("Rotating Toggle Door used\n");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// return to apos1 after a delay
|
// return to apos1 after a delay
|
||||||
|
|
Loading…
Reference in a new issue