X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fscores.qc;h=18bb5f76cb50d6f91ecd67bcec11bb16445e0ff2;hb=71dcc1f8c6018dc2a4b3db8dfc9322e8e75211e3;hp=2cb40a83492d88f454622f2c6dc9a6a47b7a7d15;hpb=4181392df811a93dee6b97c303c3f7655f2f0a23;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/scores.qc b/qcsrc/server/scores.qc index 2cb40a834..18bb5f76c 100644 --- a/qcsrc/server/scores.qc +++ b/qcsrc/server/scores.qc @@ -1,10 +1,12 @@ #include "scores.qh" #include "command/common.qh" -#include "defs.qh" +#include +#include "client.qh" #include #include #include +#include #include #include "../common/playerstats.qh" #include "../common/teams.qh" @@ -108,7 +110,9 @@ float TeamScore_AddToTeam(int t, float scorefield, float score) entity s; if(game_stopped) + { score = 0; + } if(!scores_initialized) return 0; // FIXME remove this when everything uses this system if(t <= 0 || t >= 16) @@ -334,9 +338,10 @@ float PlayerScore_Add(entity player, PlayerScoreField scorefield, float score) bool mutator_returnvalue = MUTATOR_CALLHOOK(AddPlayerScore, scorefield, score, player); score = M_ARGV(1, float); - if(game_stopped) - if(!mutator_returnvalue) + if(!mutator_returnvalue && game_stopped) + { score = 0; + } if(!scores_initialized) return 0; // FIXME remove this when everything uses this system entity s = CS(player).scorekeeper; @@ -402,7 +407,7 @@ float PlayerScore_Compare(entity t1, entity t2, float strict) }); if (result.x == 0 && strict) - result.x = etof(t1.owner) - etof(t2.owner); + result.x = t1.owner.playerid - t2.owner.playerid; return result.x; }