From 0503ceb7255a1b4b596acf54932ca9dfe5b191e7 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 15 Feb 2026 15:11:25 -0800 Subject: [PATCH] [Path] fix Path writing the wrong record type --- fatamorgana/records.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fatamorgana/records.py b/fatamorgana/records.py index 88863a7..c7bacc1 100644 --- a/fatamorgana/records.py +++ b/fatamorgana/records.py @@ -1960,7 +1960,7 @@ class Path(Record, GeometryMixin): dd = self.datatype is not None ll = self.layer is not None - size = write_uint(stream, 21) + size = write_uint(stream, 22) size += write_bool_byte(stream, (ee, ww, pp, xx, yy, rr, dd, ll)) if ll: size += write_uint(stream, self.layer) # type: ignore