Skip to content

Commit

Permalink
Fix MacRae teach option (#207)
Browse files Browse the repository at this point in the history
- Fixed: Incorrect LVAR check was used for MacRae's teach option after helping the Blades.
  • Loading branch information
alexbatalov authored Jan 2, 2024
1 parent 63243c4 commit 3efcaba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ end

procedure MacRae12 begin
Reply(128);
if (local_var(LVAR_TeachSome == 1)) then begin
if (local_var(LVAR_TeachSome) == 1) then begin
NOption(129, MacRae15, 1);
end
if (local_var(LVAR_Herebefore) == 1) then begin
Expand Down

0 comments on commit 3efcaba

Please sign in to comment.