diff options
| author | Ritabrata Das <[email protected]> | 2025-02-16 14:45:31 +0530 |
|---|---|---|
| committer | Ritabrata Das <[email protected]> | 2025-02-16 14:45:31 +0530 |
| commit | ccadc5866499e6779e3c964de6e4556ab1eaf51e (patch) | |
| tree | 94213ee2042c8ff66c5863994cc5b064b5381cc3 | |
| parent | 71216e5082346dc6824b50dd103fb264fb205f3d (diff) | |
Fix typo in FOGCOLOR and SKYCOLOR
| -rw-r--r-- | lib/PacketManager/packets/FSNETCMD_FOGCOLOR.py | 2 | ||||
| -rw-r--r-- | lib/PacketManager/packets/FSNETCMD_SKYCOLOR.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/PacketManager/packets/FSNETCMD_FOGCOLOR.py b/lib/PacketManager/packets/FSNETCMD_FOGCOLOR.py index fd195d4..722b5e8 100644 --- a/lib/PacketManager/packets/FSNETCMD_FOGCOLOR.py +++ b/lib/PacketManager/packets/FSNETCMD_FOGCOLOR.py @@ -3,7 +3,7 @@ from struct import pack, unpack class FSNETCMD_FOGCOLOR: def __init__(self, buffer:bytes, should_decode:bool=True): self.buffer = buffer - self.redValye = 0 + self.redValue = 0 self.greenValue = 0 self.blueValue = 0 if should_decode: diff --git a/lib/PacketManager/packets/FSNETCMD_SKYCOLOR.py b/lib/PacketManager/packets/FSNETCMD_SKYCOLOR.py index 2149bc5..8d42375 100644 --- a/lib/PacketManager/packets/FSNETCMD_SKYCOLOR.py +++ b/lib/PacketManager/packets/FSNETCMD_SKYCOLOR.py @@ -3,7 +3,7 @@ from struct import pack, unpack class FSNETCMD_SKYCOLOR: def __init__(self, buffer:bytes, should_decode:bool=True): self.buffer = buffer - self.redValye = 0 + self.redValue = 0 self.greenValue = 0 self.blueValue = 0 if should_decode: |
