diff -r 7ee319134713 -r bc7b1d228a2c hedgewars/uIO.pas --- a/hedgewars/uIO.pas Thu Aug 30 12:47:41 2012 -0400 +++ b/hedgewars/uIO.pas Thu Aug 30 13:02:19 2012 -0400 @@ -126,6 +126,7 @@ 'D': GameType:= gmtDemo; 'N': GameType:= gmtNet; 'S': GameType:= gmtSave; + 'V': GameType:= gmtRecord; else OutError(errmsgIncorrectUse + ' IPC "T" :' + s[2], true) end; 'V': begin if s[2] = '.' then @@ -406,7 +407,7 @@ TargetPoint.Y:= putY end; AddFileLog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y)); - State:= State and not gstHHChooseTarget; + State:= State and (not gstHHChooseTarget); if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AttackingPut) <> 0 then Message:= Message or (gmAttack and InputMask); end