From be6ef1cf1ccd76fa41db3babaf6878bba267f8e6 Mon Sep 17 00:00:00 2001 From: Siga Date: Thu, 30 Jan 2020 22:35:47 +0100 Subject: [PATCH] fix --- ReallifeGamemode.Server/Managers/ShopManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Managers/ShopManager.cs b/ReallifeGamemode.Server/Managers/ShopManager.cs index 8c87299e..24228957 100644 --- a/ReallifeGamemode.Server/Managers/ShopManager.cs +++ b/ReallifeGamemode.Server/Managers/ShopManager.cs @@ -38,7 +38,7 @@ namespace ReallifeGamemode.Server.Managers foreach (var store in luxury) { Vector3 pos = new Vector3(store.PositionX, store.PositionY, store.PositionZ); - ClotheShop newShop = new ClotheShop(2, pos); + ClotheShop newShop = new ClotheShop(3, pos); clotheStores.Add(newShop); NAPI.Util.ConsoleOutput($"Loading ClotheShop {store.Name}"); }