From 82e6999cc7b7f2ee95391b950aa6b8d526705925 Mon Sep 17 00:00:00 2001 From: Lennart Kampshoff Date: Tue, 2 Oct 2018 23:10:14 +0200 Subject: [PATCH] Removed unneccessary console outputs --- Server/Commands/Admin.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Server/Commands/Admin.cs b/Server/Commands/Admin.cs index 8613e21f..4011db65 100644 --- a/Server/Commands/Admin.cs +++ b/Server/Commands/Admin.cs @@ -1058,19 +1058,12 @@ namespace reallife_gamemode.Server.Commands int userID = player.GetUser().Id; using (var loadData = new DatabaseContext()) { - NAPI.Util.ConsoleOutput("myID = " + userID); - foreach (Entities.UserVehicle v in loadData.UserVehicles) + foreach (UserVehicle v in loadData.UserVehicles) { - NAPI.Util.ConsoleOutput("Found vehicle: " + v.Model + " | userid = " + v.UserId); if (v.UserId == userID) { - NAPI.Util.ConsoleOutput("Fahrzeug gehört dir (" + v.UserId + " ist " + userID + ")"); player.SendChatMessage("~b~" + v.Model); } - else - { - NAPI.Util.ConsoleOutput("Fahrzeug gehört nicht dir. (" + v.UserId + " ist nicht " + userID + ")"); - } } } }