From cada78dfb0b7b1b2772c3cd95d890a2bd9dc317e Mon Sep 17 00:00:00 2001 From: object-Object Date: Sun, 5 Nov 2023 20:22:38 -0500 Subject: [PATCH] Fix gaslighting not working because of union order --- src/hexdoc/minecraft/assets/textures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hexdoc/minecraft/assets/textures.py b/src/hexdoc/minecraft/assets/textures.py index 15191f65..2c2d779e 100644 --- a/src/hexdoc/minecraft/assets/textures.py +++ b/src/hexdoc/minecraft/assets/textures.py @@ -246,7 +246,7 @@ def gaslighting(self): return True -ItemWithTexture = ItemWithNormalTexture | ItemWithGaslightingTexture +ItemWithTexture = ItemWithGaslightingTexture | ItemWithNormalTexture class TagWithTexture(InlineModel):