diff options
| author | mat <git@matdoes.dev> | 2024-12-19 02:31:08 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-12-19 02:52:41 +0000 |
| commit | e268c4929177e540baa9d2bb29bc171f49cc7a25 (patch) | |
| tree | 10146e529088ab823452a5971c0a37a8886b2a68 /codegen/lib/utils.py | |
| parent | 1f06a1540f46d8087907566d7c6c1ab397c517ec (diff) | |
| download | azalea-drasl-e268c4929177e540baa9d2bb29bc171f49cc7a25.tar.xz | |
fix incorrect packets
Diffstat (limited to 'codegen/lib/utils.py')
| -rwxr-xr-x | codegen/lib/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/codegen/lib/utils.py b/codegen/lib/utils.py index efabbb38..162dd0fa 100755 --- a/codegen/lib/utils.py +++ b/codegen/lib/utils.py @@ -25,7 +25,7 @@ def upper_first_letter(name: str): def padded_hex(n: int): - return f'0x{n:02x}' + return f'0x{n:02X}' class PacketIdentifier: |
