# HG changeset patch # User Wuzzy # Date 1591676481 -7200 # Node ID 5a949495ee29fa056867e211df038a6d02c0ffcf # Parent 250c778463f3402c4a078196a62fbf7aab54ad74 Add missing semicolon (oops!) diff -r 250c778463f3 -r 5a949495ee29 hedgewars/uAIAmmoTests.pas --- a/hedgewars/uAIAmmoTests.pas Tue Jun 09 05:51:39 2020 +0200 +++ b/hedgewars/uAIAmmoTests.pas Tue Jun 09 06:21:21 2020 +0200 @@ -1282,7 +1282,7 @@ dx:= (Targ.Point.X - x) * t; dy:= (Targ.Point.Y - y) * t; - ap.Angle:= DxDy2AttackAnglef(dx, -dy) + ap.Angle:= DxDy2AttackAnglef(dx, -dy); // Apply inaccuracy if (not cLaserSighting) then inc(ap.Angle, + AIrndSign(random((Level - 1) * 10)));