Update stored.lua

This commit is contained in:
Miho931 2025-06-08 18:40:13 +02:00
parent 74349740b5
commit fc0a0d7f12

View file

@ -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
})