From 3cf4cc33fa634575a116ca115045b0cd9398a8fd Mon Sep 17 00:00:00 2001 From: CroniX Date: Sun, 2 Aug 2020 20:17:31 +0200 Subject: [PATCH] Geld abheben Hausbesitzer Text --- ReallifeGamemode.Client/Gui/house.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Client/Gui/house.ts b/ReallifeGamemode.Client/Gui/house.ts index 5df586d8..85d19c9c 100644 --- a/ReallifeGamemode.Client/Gui/house.ts +++ b/ReallifeGamemode.Client/Gui/house.ts @@ -115,7 +115,7 @@ function keyPressHandler() { game.events.callServer("House_BuyHouse"); houseMenu.Close(); } else if (item === setRentalFeeItem) { - var rentalFeeInput = new InputHelper("Wie viel soll die Miete betragen?"); + var rentalFeeInput = new InputHelper("Wie hoch soll die Miete sein?"); rentalFeeInput.show(); rentalFeeInput.getValue(data => { if (isNaN(data)) { @@ -137,7 +137,7 @@ function keyPressHandler() { game.events.callServer("House_SellHouse"); houseMenu.Close(); } else if (item == withdrawBankItem) { - var input = new InputHelper("Wie viel willst du abheben"); + var input = new InputHelper("Wie viel Geld möchtest du abheben?"); input.show(); input.getValue(data => { if (isNaN(data)) {