Skip to content

Commit

Permalink
Merge pull request #139 from ya0guang/patch-1
Browse files Browse the repository at this point in the history
Change variable name
  • Loading branch information
IdreesInc authored Aug 10, 2024
2 parents 16ded48 + dfccf44 commit 1f97237
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

The monospaced font for developers who like Minecraft a bit _too_ much.

If you'd like to see a vectorized version of this font, try [Miracode](https://github.com/IdreesInc/Miracode)!

*Notice: This project is not affiliated with Minecraft or Mojang in any way and is exclusively a fan project. This font emulates the typeface of the font used in the Minecraft UI, but it does not include any assets or font files from the original game.*

## Features
Expand Down
2 changes: 1 addition & 1 deletion src/monocraft.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def imageFromArray(arr, x=0, y=0):
y=y,
width=len(arr[0]),
height=len(arr),
data=bytes(x for a in reversed(arr) for x in a),
data=bytes(v for a in reversed(arr) for v in a),
)

def drawPolygon(poly, pen):
Expand Down

0 comments on commit 1f97237

Please sign in to comment.