disable land dump when using blurry land setting.
authornemo
Tue, 21 Jul 2015 08:28:48 -0400
changeset 11024 b02e38762bbb
parent 11023 cff55def4a46
child 11025 999afa63035f
disable land dump when using blurry land setting.
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);