diff --git a/ReallifeGamemode.Server/Job/JobBase.cs b/ReallifeGamemode.Server/Job/JobBase.cs index 9e00dd26..d3b2fef3 100644 --- a/ReallifeGamemode.Server/Job/JobBase.cs +++ b/ReallifeGamemode.Server/Job/JobBase.cs @@ -4,6 +4,8 @@ using ReallifeGamemode.Server.Models; using ReallifeGamemode.Server.Services; using System.Collections.Generic; using System.Linq; +using ReallifeGamemode.Server.Util; +using ReallifeGamemode.Server.Services; namespace ReallifeGamemode.Server.Job { @@ -29,6 +31,7 @@ namespace ReallifeGamemode.Server.Job _inJob.Add(player); ChatService.SendMessage(player, $"~y~[JOB]~s~ Du hast deinen Job ~o~{this.Name}~s~ gestartet."); + CheckPointHandle.RemovePlayerHandlerFromList(player); JobStart?.Invoke(player); }