From 81adcddcb75803e3b401dc20e30792a6f8b8b4d4 Mon Sep 17 00:00:00 2001 From: hydrant Date: Thu, 27 Jun 2019 21:56:58 +0200 Subject: [PATCH] fix cloth bug --- ReallifeGamemode.Server/Events/UpdateCharacterCloth.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Events/UpdateCharacterCloth.cs b/ReallifeGamemode.Server/Events/UpdateCharacterCloth.cs index d2fce39e..2d909025 100644 --- a/ReallifeGamemode.Server/Events/UpdateCharacterCloth.cs +++ b/ReallifeGamemode.Server/Events/UpdateCharacterCloth.cs @@ -145,7 +145,7 @@ namespace ReallifeGamemode.Server.Events } else { - player.SetClothes(cloth.SlotId, cloth.ClothId, 0); + player.SetClothes(cloth.SlotId, cloth.ClothId, cloth.Texture); } } }