This commit is contained in:
aviate
2019-09-08 17:43:21 +02:00
parent 1ee0c8cb87
commit de0003655d
3 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ export default function carDealer(globalData: GlobalData) {
var veh = mp.players.local.vehicle;
if (!veh) return;
mp.gui.chat.show(false);
shopMenu = new Menu("Fahrzeugkauf", "Kaufe ein neues Auto", new Point(50, 50), null, null);
shopMenu = new Menu("Fahrzeugkauf", "Kaufe ein neues Fahrzeug", new Point(50, 50), null, null);
globalData.InMenu = true;
@@ -49,7 +49,7 @@ export default function carDealer(globalData: GlobalData) {
carItem.SetRightLabel(mp.game.ui.getLabelText(mp.game.vehicle.getDisplayNameFromVehicleModel(veh.model)));
shopMenu.AddItem(carItem);
var shopItem = new UIMenuItem("Autohaus");
var shopItem = new UIMenuItem("Shop");
shopItem.SetRightLabel(businessName);
shopMenu.AddItem(shopItem);