]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Even newer debug prints
authorSamual Lenks <samual@xonotic.org>
Tue, 24 Jul 2012 00:33:49 +0000 (20:33 -0400)
committerSamual Lenks <samual@xonotic.org>
Tue, 24 Jul 2012 00:33:49 +0000 (20:33 -0400)
qcsrc/server/w_laser.qc

index ac3a5fdd5f9d92579fa91431dd3324dbb9d10859..9fe4d51b7021f3964dee63b5caf11add9c028c6a 100644 (file)
@@ -139,7 +139,7 @@ void W_Laser_Shockwave(void)
                final_damage = (autocvar_g_balance_laser_primary_damage * multiplier);
                Damage(aim_ent, self, self, final_damage, WEP_LASER, aim_ent.origin, final_force);
                
-               print("DIRECT HIT: multiplier = ", ftos(multiplier), strcat(", damage = ", ftos(final_damage), ", force = ", ftos(vlen(final_force))),"... multiplier_from_accuracy = ", ftos(multiplier_from_accuracy), ", multiplier_from_distance = ", ftos(multiplier_from_distance), ".\n");
+               print("debug: DIRECT HIT: multiplier = ", ftos(multiplier), strcat(", damage = ", ftos(final_damage), ", force = ", ftos(vlen(final_force))),"... multiplier_from_accuracy = ", ftos(multiplier_from_accuracy), ", multiplier_from_distance = ", ftos(multiplier_from_distance), ".\n");
        }
 
        // now figure out if I hit anything else than what my aim directly pointed at...
@@ -180,7 +180,7 @@ void W_Laser_Shockwave(void)
                                        final_damage = (autocvar_g_balance_laser_primary_damage * multiplier + autocvar_g_balance_laser_primary_edgedamage * (1 - multiplier));
                                        Damage(head, self, self, final_damage, WEP_LASER, head.origin, final_force);
 
-                                       print("EDGE HIT: multiplier = ", ftos(multiplier), strcat(", damage = ", ftos(final_damage), ", force = ", ftos(vlen(final_force))),"... multiplier_from_accuracy = ", ftos(multiplier_from_accuracy), ", multiplier_from_distance = ", ftos(multiplier_from_distance), ".\n");
+                                       print("debug: EDGE HIT: multiplier = ", ftos(multiplier), strcat(", damage = ", ftos(final_damage), ", force = ", ftos(vlen(final_force))),"... multiplier_from_accuracy = ", ftos(multiplier_from_accuracy), ", multiplier_from_distance = ", ftos(multiplier_from_distance), ".\n");
                                        
                                        //pointparticles(particleeffectnum("rocket_guide"), w_shotorg, w_shotdir * 1000, 1);
                                        //SendCSQCShockwaveParticle(autocvar_g_balance_laser_primary_spread, trace_endpos);