From b92bcc4db12043f90dabc194c632df75edb3965d Mon Sep 17 00:00:00 2001 From: Rem's Little Helper Date: Wed, 4 Feb 2026 15:56:13 +0000 Subject: [PATCH] chore: remove reservation protocol comments --- scripts/Connection.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/Connection.cs b/scripts/Connection.cs index 2eaf177..40c7dea 100644 --- a/scripts/Connection.cs +++ b/scripts/Connection.cs @@ -403,7 +403,6 @@ public partial class Connection : Node { switch (command) { case "ADD": { - // ADD:, if (segments.Length < 2) break; string[] users = segments[1].Split(','); if (users.Length != 2) break; @@ -415,7 +414,6 @@ public partial class Connection : Node { break; } case "DELETE": { - // DELETE:, if (segments.Length < 2) break; string[] users = segments[1].Split(','); if (users.Length != 2) break; @@ -427,7 +425,6 @@ public partial class Connection : Node { break; } case "LIST": { - // LIST:,|,|... var reservations = new List<(string player1, string player2)>(); if (segments.Length >= 2 && !string.IsNullOrWhiteSpace(segments[1])) {