From 4ac8182cf2bbf0cee84218fcfcbc512a55727dd3 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Sat, 28 Feb 2026 18:14:10 +0100 Subject: [PATCH] [chore:] removed unused variable/ fixed typo --- structs.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/structs.cs b/structs.cs index 3d36f8e..9b492ba 100644 --- a/structs.cs +++ b/structs.cs @@ -58,7 +58,6 @@ public class Student { public string ID { get; set; } = ""; // ID des Schüler (z.B. NolteSeb) public string Name { get; set; } = ""; // Name des Schülers - public Sport[] SelectedCourses { get; set; } = new Sport[4]; // Kurswahl public List SelectedCourseNames { get; set; } = new(); public List? Result { get; set; } = null; @@ -102,7 +101,7 @@ public class Settings { Instance.Sports.Add(new Sport("Tischtennis"){ AlternativeNames = {"Sport_TT"}}); Instance.Sports.Add(new Sport("Badminton"){ AlternativeNames = {"Sport_BM"}}); - Instance.Sports.Add(new Sport("Gynmastik/Tanz"){ AlternativeNames = {"Sport_Gym"}}); + Instance.Sports.Add(new Sport("Gymnastik/Tanz"){ AlternativeNames = {"Sport_Gym"}}); Instance.Sports.Add(new Sport("Schwimmen"){ AlternativeNames = {"Sport_SW"}, Semester = [1, 1, 1, 1], MaxStudents = 18}); Instance.Sports.Add(new Sport("Bouldern"){ AlternativeNames = {"Sport_BO"}, Semester = [1, 1, 1, 1]}); Instance.Sports.Add(new Sport("Basketball"){ AlternativeNames = {"Sport_BS"}});