From 27a8a5877b9e3c9e7b55f2b802af94db02b7542c Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sat, 14 Mar 2020 20:56:45 +0000
Subject: [PATCH] Fix a couple of calls to draw_menu() which should have been
 calls to draw_map() !JavaScript  /sbbs/xtrn/lord2/lord2.js line 2264:
 ReferenceError: draw_menu is not defined

---
 xtrn/lord2/lord2.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xtrn/lord2/lord2.js b/xtrn/lord2/lord2.js
index 819a00a757..4f2b7bc886 100644
--- a/xtrn/lord2/lord2.js
+++ b/xtrn/lord2/lord2.js
@@ -2261,7 +2261,7 @@ function run_ref(sec, fname)
 						lw('`$Q `2to quit, `$ENTER `2to buy item.        You have `$&gold `2gold.`r0');
 						break;
 				}
-				draw_menu();
+				draw_map();
 			}
 		},
 		'saveglobals':function(args) {
@@ -2456,7 +2456,7 @@ rescan:
 							lw('`r0');
 							continue rescan;
 					}
-					draw_menu();
+					draw_map();
 				}
 			}
 		},
-- 
GitLab