# HG changeset patch # User Wuzzy # Date 1537342266 -7200 # Node ID 096cc009e0b8d76845bfbb7759127ef8f456def7 # Parent 552f0d5ab3e7c6e95b0b1a87a6b389fce0e08c16 Clear gmSwitch before activating switcher If if you pressed [Switch Hedgehog] key and THEN enabled the Switch Hedgehog utility, you immediately switch. This was mildly confusing. diff -r 552f0d5ab3e7 -r 096cc009e0b8 hedgewars/uGearsHandlersMess.pas --- a/hedgewars/uGearsHandlersMess.pas Tue Sep 18 19:38:58 2018 -0400 +++ b/hedgewars/uGearsHandlersMess.pas Wed Sep 19 09:31:06 2018 +0200 @@ -3268,7 +3268,7 @@ with HHGear^ do begin State := State and (not gstAttacking); - Message := Message and (not gmAttack) + Message := Message and (not (gmAttack or gmSwitch)) end end;