X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_map.pas;h=2b8e9ff34d5875ab0042b71f15b9936bfb680e97;hb=4bbb1dced3434adcd1fdd0168c9de9ce64e42ce4;hp=570d5e2413c66732c51084fdc17e37e62fc50708;hpb=9ba8ea50592447e5c5874f94338e7dd75f5a35ed;p=d2df-sdl.git diff --git a/src/game/g_map.pas b/src/game/g_map.pas index 570d5e2..2b8e9ff 100644 --- a/src/game/g_map.pas +++ b/src/game/g_map.pas @@ -3272,9 +3272,9 @@ begin if gGameSettings.GameMode in [GM_TDM, GM_CTF] then begin // Î÷êè Êðàñíîé êîìàíäû - utils.writeInt(st, SmallInt(gTeamStat[TEAM_RED].Goals)); + utils.writeInt(st, SmallInt(gTeamStat[TEAM_RED].Score)); // Î÷êè Ñèíåé êîìàíäû - utils.writeInt(st, SmallInt(gTeamStat[TEAM_BLUE].Goals)); + utils.writeInt(st, SmallInt(gTeamStat[TEAM_BLUE].Score)); end; ///// ///// end; @@ -3364,9 +3364,9 @@ begin if gGameSettings.GameMode in [GM_TDM, GM_CTF] then begin // Î÷êè Êðàñíîé êîìàíäû - gTeamStat[TEAM_RED].Goals := utils.readSmallInt(st); + gTeamStat[TEAM_RED].Score := utils.readSmallInt(st); // Î÷êè Ñèíåé êîìàíäû - gTeamStat[TEAM_BLUE].Goals := utils.readSmallInt(st); + gTeamStat[TEAM_BLUE].Score := utils.readSmallInt(st); end; ///// ///// end;