# HG changeset patch # User nemo # Date 1437481728 14400 # Node ID b02e38762bbbfbe6cfe032ccbc7a0a732641957d # Parent cff55def4a4638c09b1fda99b2c9bba341031f2f disable land dump when using blurry land setting. diff -r cff55def4a46 -r b02e38762bbb hedgewars/uCommandHandlers.pas --- a/hedgewars/uCommandHandlers.pas Sun Jul 19 13:19:20 2015 +0200 +++ b/hedgewars/uCommandHandlers.pas Tue Jul 21 08:28:48 2015 -0400 @@ -492,7 +492,7 @@ begin s:= s; // avoid compiler hint flagMakeCapture:= true; -flagDumpLand:= LocalMessage and gmPrecise <> 0; +flagDumpLand:= (LocalMessage and gmPrecise <> 0) and (cReducedQuality and rqBlurryLand = 0); end; procedure chRecord(var s: shortstring);