From 925135ed46d28e6bf8879dab7934c5ae8da0251d Mon Sep 17 00:00:00 2001 From: qndel Date: Sat, 13 Apr 2019 01:10:02 +0200 Subject: [PATCH] DoAutoMap bin exact --- Source/control.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/control.cpp b/Source/control.cpp index cf40916b8..811a6e33c 100644 --- a/Source/control.cpp +++ b/Source/control.cpp @@ -1459,10 +1459,10 @@ void control_check_btn_press() void DoAutoMap() { if (currlevel || gbMaxPlayers != 1) { - if (automapflag) - automapflag = 0; - else + if (!automapflag) StartAutomap(); + else + automapflag = 0; } else { InitDiabloMsg(EMSG_NO_AUTOMAP_IN_TOWN); }