From 167efdd299af20d8870c9e79399603af5041072b Mon Sep 17 00:00:00 2001 From: Bob <> Date: Wed, 4 Feb 2026 19:40:25 -0500 Subject: [PATCH] Support MAP file format version 9 Grim Dawn updated the MAP file format from version 8 to version 9, causing "Cannot load shrine and gate names" error. This change accepts both versions since the internal structure appears unchanged. --- src/gd_edit/io/map.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gd_edit/io/map.clj b/src/gd_edit/io/map.clj index 594c0a8..df7412f 100644 --- a/src/gd_edit/io/map.clj +++ b/src/gd_edit/io/map.clj @@ -35,7 +35,7 @@ [preamble] (when (or (not= (:magic preamble) "MAP") - (not= (:version preamble) 8)) + (not (contains? #{8 9} (:version preamble)))) (throw (Throwable. "I don't understand this MAP format!")))) (def sector-id-map