From fc0a0d7f12b5cf936f7965660ab51965021f5791 Mon Sep 17 00:00:00 2001 From: Miho931 <98314142+Miho931@users.noreply.github.com> Date: Sun, 8 Jun 2025 18:40:13 +0200 Subject: [PATCH] Update stored.lua --- resources/[carscripts]/mh_garage/client/stored.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/resources/[carscripts]/mh_garage/client/stored.lua b/resources/[carscripts]/mh_garage/client/stored.lua index fbad8eee3..5a07557c4 100644 --- a/resources/[carscripts]/mh_garage/client/stored.lua +++ b/resources/[carscripts]/mh_garage/client/stored.lua @@ -18,17 +18,14 @@ AddEventHandler('mh_garage:storeVehicle', function(zone) icon = "car", onSelect = function() if zone.price == nil then - + else - local alert = lib.alertDialog({ + lib.alertDialog({ header = "Parkplatz kosten", content = "Parkplatkosten pro Fahrzeug: "..zone.price.."\n\nWillst du das Parkplatz trotzdem Einparken?", centered = true, cancel = true }) - - print(alert) - print(json.encode(alert)) end end })