diff --git a/ReallifeGamemode.Server/Job/RefuseCollectorJob.cs b/ReallifeGamemode.Server/Job/RefuseCollectorJob.cs index 0a576878..8d3997d8 100644 --- a/ReallifeGamemode.Server/Job/RefuseCollectorJob.cs +++ b/ReallifeGamemode.Server/Job/RefuseCollectorJob.cs @@ -249,10 +249,13 @@ namespace ReallifeGamemode.Server.Job target.SendNotification("Müllsack: " + user2.trashcount + " von 20."); user2.trashcount += 1; - if (user1.trashcount == 20) + if (user2.trashcount == 20) { target.SendChatMessage("~y~Dies ist dein 20ter Müllsack."); } + }if (user1.trashcount == 20) + { + player.SendChatMessage("~y~Dies ist dein 20ter Müllsack."); } dbContext.SaveChanges(); }