]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/miscfunctions.qc
move shotgun melee sound to CH_WEAPON_A; add bot_cmd setbots command to set bot count
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / miscfunctions.qc
index 489735585787fbf7ef1af0c92873feca2fe0e255..4a860f03efd783058191ccb3725b391a7e248be7 100644 (file)
@@ -367,13 +367,13 @@ void spawnfunc_target_location()
     self.classname = "target_location";
     // location name in netname
     // eventually support: count, teamgame selectors, line of sight?
-};
+}
 
 void spawnfunc_info_location()
 {
     self.classname = "target_location";
     self.message = self.netname;
-};
+}
 
 string NearestLocation(vector p)
 {
@@ -746,7 +746,7 @@ vector randompos(vector m1, vector m2)
     v_y = m2_y * random() + m1_y;
     v_z = m2_z * random() + m1_z;
     return  v;
-};
+}
 
 //#NO AUTOCVARS START