From 895f63a81cd31d02199ddfe317b3180c8b1721f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Piasecki?= Date: Wed, 8 Jul 2026 18:37:18 +0000 Subject: [PATCH] support your local gifmaker (#33) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-on: https://git.westgate.pw/ShadowsOverWestgate/sow-tools/pulls/33 Reviewed-by: archvillainette Co-authored-by: Michał Piasecki Co-committed-by: Michał Piasecki --- internal/erf/erf.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/erf/erf.go b/internal/erf/erf.go index 4be21ad..b833ffc 100644 --- a/internal/erf/erf.go +++ b/internal/erf/erf.go @@ -123,6 +123,7 @@ var extensionTypes = map[string]uint16{ "mtr": 0x0818, "jpg": 0x081C, "lod": 0x081E, + "gif": 0x081F, "png": 0x0820, "lyt": 0x0BB8, "vis": 0x0BB9, @@ -188,6 +189,7 @@ var typeExtensions = map[uint16]string{ 0x0818: "mtr", 0x081C: "jpg", 0x081E: "lod", + 0x081F: "gif", 0x0820: "png", 0x0BB8: "lyt", 0x0BB9: "vis",