From df1e650e4140a0260ba99e4f4a957e4fdba66e80 Mon Sep 17 00:00:00 2001 From: Fabian Fabian Date: Mon, 16 Sep 2019 23:16:01 +0200 Subject: [PATCH] fixis --- ReallifeGamemode.Server/Job/JobBase.cs | 3 +++ 1 file changed, 3 insertions(+) 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); }