From 3db1515ecf3a5ab8f9b3b642dc564ca84ab3182c Mon Sep 17 00:00:00 2001
From: TheBrokenRail <connor24nolan@live.com>
Date: Tue, 25 Feb 2025 04:42:42 -0500
Subject: [PATCH] Improve Error Message

---
 src/map.ts | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/map.ts b/src/map.ts
index d6a43cf..af39678 100644
--- a/src/map.ts
+++ b/src/map.ts
@@ -1,5 +1,6 @@
 import { Struct } from './struct';
 import { load } from './loader';
+import { extendErrorMessage } from './common';
 
 // Store Loaded Structures
 const structures: Record<string, Struct> = {};
@@ -20,11 +21,7 @@ export function getStructure(name: string) {
             // Return
             return target;
         } catch (e) {
-            let message = 'Error Loading ' + name;
-            if (e instanceof Error) {
-                message += ': ' + e.message;
-            }
-            throw new Error(message);
+            throw new Error(extendErrorMessage(e, 'Loading ' + name));
         }
     }
 }
\ No newline at end of file