From 0f42c90ac03e3fa63ecc12a4e2da1908086a5355 Mon Sep 17 00:00:00 2001 From: cubexteam Date: Wed, 4 Mar 2026 18:11:38 +0300 Subject: [PATCH] =?UTF-8?q?refactor:=20var=20=E2=86=92=20const?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refactor: var → const --- raknet/const.go | 1 + 1 file changed, 1 insertion(+) diff --git a/raknet/const.go b/raknet/const.go index 41718ec..8259b4a 100644 --- a/raknet/const.go +++ b/raknet/const.go @@ -47,3 +47,4 @@ func (r Reliability) IsOrdered() bool { func (r Reliability) IsSequenced() bool { return r == UnreliableSequenced || r == ReliableSequenced +}