Skip to content

Commit

Permalink
Fix gaslighting not working because of union order
Browse files Browse the repository at this point in the history
  • Loading branch information
object-Object committed Nov 6, 2023
1 parent 7202a5c commit cada78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hexdoc/minecraft/assets/textures.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def gaslighting(self):
return True


ItemWithTexture = ItemWithNormalTexture | ItemWithGaslightingTexture
ItemWithTexture = ItemWithGaslightingTexture | ItemWithNormalTexture


class TagWithTexture(InlineModel):
Expand Down

0 comments on commit cada78d

Please sign in to comment.