X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_player.pas;h=e0a04f5354833be34d1bbe88fdeb8877a5237820;hb=fd7ac4cd55502ecbb2a77e3f603ac0f899c1064d;hp=da7e6d2eea8f7a52fac7bb5dcdc366e3e20e50d9;hpb=d001446ed83b8c55697892867289381d495bc2e5;p=d2df-sdl.git diff --git a/src/game/g_player.pas b/src/game/g_player.pas index da7e6d2..e0a04f5 100644 --- a/src/game/g_player.pas +++ b/src/game/g_player.pas @@ -3709,14 +3709,14 @@ begin // find next weapon to switch onto cwi := curlidx; - for i := 0 to High(FWeapon) do + for i := 0 to High(weaponOrder) do begin - cwi := (cwi+length(FWeapon)+1) mod length(FWeapon); + cwi := (cwi+length(weaponOrder)+1) mod length(weaponOrder); if (cwi = curlidx) then continue; // skip current weapon if not wantThisWeapon[cwi] then continue; rwidx := weaponOrder[cwi]; if (rwidx < 0) then continue; - //e_WriteLog(Format(' trying logical %d (real %d)', [cwi, rwidx]), TMsgType.Warning); + //e_WriteLog(Format(' trying logical %d (real %d); has=%d, hasammo=%d', [cwi, rwidx, Integer(FWeapon[rwidx]), Integer(hasAmmoForWeapon(rwidx))]), TMsgType.Warning); if FWeapon[rwidx] and ((wwc = 1) or hasAmmoForWeapon(rwidx)) then begin //e_WriteLog(' I FOUND HER!', TMsgType.Warning);