From 124a93c28bf036d94516e5dc5fb1ee6cb3f90b98 Mon Sep 17 00:00:00 2001 From: hydrant Date: Sun, 9 May 2021 21:11:21 +0200 Subject: [PATCH] /clothes -> /setclothes, /props -> /setprops --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index 489658ee..d3ea60b3 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -3820,8 +3820,8 @@ namespace ReallifeGamemode.Server.Commands ChatService.SendMessage(player, $"~b~[ADMIN]~s~ Der Kaufpreis des Fahrzeugs ~y~{serverVehicle.Id}~s~ wurde auf ~g~{price.ToMoneyString()} gesetzt. Alter Preis: {oldPriceStr}"); } - [Command("clothes", "~m~Benutzung: ~s~/clothes [Spieler] [Component ID] [Drawable] (Textur)")] - public void CmdAdminClothes(Player player, string name, int component, int drawable, int texture = 0) + [Command("setclothes", "~m~Benutzung: ~s~/setclothes [Spieler] [Component ID] [Drawable] (Textur)")] + public void CmdAdminSetClothes(Player player, string name, int component, int drawable, int texture = 0) { if (!player.GetUser()?.IsAdmin(AdminLevel.HEADADMIN) ?? true) { @@ -3864,8 +3864,8 @@ namespace ReallifeGamemode.Server.Commands } } - [Command("props", "~m~Benutzung: ~s~/props [Spieler] [Component ID] [Drawable] (Textur)")] - public void CmdAdminProps(Player player, string name, int slot, int component, int texture = 0) + [Command("setprops", "~m~Benutzung: ~s~/setprops [Spieler] [Component ID] [Drawable] (Textur)")] + public void CmdAdminSetProps(Player player, string name, int slot, int component, int texture = 0) { if (!player.GetUser()?.IsAdmin(AdminLevel.HEADADMIN) ?? true) {