diff --git a/rcon/source/proto.py b/rcon/source/proto.py index 537fd66..317f1b4 100644 --- a/rcon/source/proto.py +++ b/rcon/source/proto.py @@ -79,7 +79,10 @@ class Packet(NamedTuple): payload: bytes terminator: bytes = TERMINATOR - def __add__(self, other: Packet): + def __add__(self, other: Packet | None): + if other is None: + return self + return Packet( self.id, self.type,