X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fclient%2Fmiscfunctions.qc;h=036c9570f1df2a3b4da7ed475c1db368e89c947c;hp=845a5641067df16b639e047090b8b03b98e452f9;hb=e9e91f9bc18dd5002e60c595c83cb8f45068a14b;hpb=1d4454eb627b54e4b01a36ccce32a2767b02416c diff --git a/qcsrc/client/miscfunctions.qc b/qcsrc/client/miscfunctions.qc index 845a56410..036c9570f 100644 --- a/qcsrc/client/miscfunctions.qc +++ b/qcsrc/client/miscfunctions.qc @@ -1,18 +1,13 @@ #include "miscfunctions.qh" -#include "_all.qh" #include "hud.qh" -#include "sortlist.qh" #include "../common/command/generic.qh" #include "../common/teams.qh" -#include "../common/urllib.qh" -#include "../common/util.qh" -#include "../csqcmodellib/cl_model.qh" +#include "../lib/csqcmodel/cl_model.qh" -#include "../warpzonelib/mathlib.qh" void AuditLists() { @@ -110,7 +105,7 @@ void RemoveTeam(entity Team) if(!tm) { - print(_("Trying to remove a team which is not in the teamlist!")); + LOG_INFO(_("Trying to remove a team which is not in the teamlist!")); return; } parent.sort_next = Team.sort_next; @@ -128,7 +123,8 @@ entity GetTeam(int Team, bool add) return teamslots[num]; if (!add) return world; - entity tm = spawn(); + entity tm = new(team); + make_pure(tm); tm.team = Team; teamslots[num] = tm; RegisterTeam(tm); @@ -169,14 +165,6 @@ vector rotate(vector v, float a) return w; } -string ColorTranslateRGB(string s) -{ - if(ColorTranslateMode & 1) - return strdecolorize(s); - else - return s; -} - // decolorizes and team colors the player name when needed string playername(string thename, float teamid) { @@ -577,7 +565,7 @@ void URI_Get_Callback(int id, float status, string data) } else { - printf("Received HTTP request data for an invalid id %d.\n", id); + LOG_INFOF("Received HTTP request data for an invalid id %d.\n", id); } } @@ -602,7 +590,7 @@ void Accuracy_LoadLevels() if(acc_levels > MAX_ACCURACY_LEVELS) acc_levels = MAX_ACCURACY_LEVELS; if(acc_levels < 2) - print("Warning: accuracy_color_levels must contain at least 2 values\n"); + LOG_INFO("Warning: accuracy_color_levels must contain at least 2 values\n"); int i; for(i = 0; i < acc_levels; ++i)