From 11665a55b14325111eb3a807b537502883a60ff5 Mon Sep 17 00:00:00 2001
From: Rob Swindell <rob@synchro.net>
Date: Thu, 31 Dec 2020 12:39:23 -0800
Subject: [PATCH] Fix new ReferenceError("round is not defined")

---
 xtrn/lord/grabbag/grabbag.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xtrn/lord/grabbag/grabbag.js b/xtrn/lord/grabbag/grabbag.js
index 0b81a7f4d2..2172f85b90 100644
--- a/xtrn/lord/grabbag/grabbag.js
+++ b/xtrn/lord/grabbag/grabbag.js
@@ -2902,7 +2902,7 @@ function climb() {
 		break;
 			
 		case 6:
-			reward = Math,round(player.exp / 10);
+			reward = Math.round(player.exp / 10);
 			player.hp += reward;
 			lln('  YOU GRABBED AN EMPTY POUCH!');
 			more_nomail();
-- 
GitLab