]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
undo accidental commit of these files
authorRudolf Polzer <divverent@xonotic.org>
Tue, 29 Jan 2013 08:33:24 +0000 (09:33 +0100)
committerRudolf Polzer <divverent@xonotic.org>
Tue, 29 Jan 2013 08:33:24 +0000 (09:33 +0100)
qcsrc/server/vehicles/spiderbot.qc
qcsrc/server/vehicles/vehicles.qc

index b4fd96e1412068044093d04800218b34acce042c..9bbdd096a259e609b5aa3bfdb46cc485f7393569 100644 (file)
@@ -254,7 +254,6 @@ void spiderbot_rocket_do()
     switch(self.vehicle_weapon2mode)
     {
         case SBRM_VOLLY:
-            print(sprintf("1: %i\n", self.owner));
             rocket = vehicles_projectile("spiderbot_rocket_launch", "weapons/rocket_fire.wav",
                                    v, normalize(randomvec() * autocvar_g_vehicle_spiderbot_rocket_spread + v_forward) * autocvar_g_vehicle_spiderbot_rocket_speed,
                                    autocvar_g_vehicle_spiderbot_rocket_damage, autocvar_g_vehicle_spiderbot_rocket_radius, autocvar_g_vehicle_spiderbot_rocket_force, 1,
index e2459e4ff483414a08af50a214377c871fbfb87c..5e377079e01dd2fc0b1377fde2a884a17e50656a 100644 (file)
@@ -410,8 +410,6 @@ entity vehicles_projectile(string _mzlfx, string _mzlsound,
 {
     entity proj;
 
-    print(sprintf("2: %i\n", _owner));
-
     proj = spawn();
 
     PROJECTILE_MAKETRIGGER(proj);
@@ -452,10 +450,6 @@ entity vehicles_projectile(string _mzlfx, string _mzlsound,
 
     setsize (proj, '-1 -1 -1' * _size, '1 1 1' * _size);
 
-    print(sprintf("3: %i\n", proj));
-    print(sprintf("4: %i\n", proj.enemy));
-    print(sprintf("5: %i\n", proj.owner));
-    print(sprintf("6: %i\n", proj.realowner));
     CSQCProjectile(proj, _clianim, _projtype, _cull);
 
     return proj;