diff --git a/sky_phone/config/config.lua b/sky_phone/config/config.lua index 1ee89b9..dd40627 100644 --- a/sky_phone/config/config.lua +++ b/sky_phone/config/config.lua @@ -65,7 +65,7 @@ Config.Payphones = { Dictionary = "anim@scripted@payphone_hits@male@", PedClip = "FXFR_PAV_1_INTRO_MALE", PropClip = "FXFR_PAV_1_INTRO_PHONE", - HangupDurationMs = 1200, + HangupDurationMs = 2000, }, } diff --git a/sky_phone/source/client/payphones.lua b/sky_phone/source/client/payphones.lua index 32ae6ba..d3fb3b4 100644 --- a/sky_phone/source/client/payphones.lua +++ b/sky_phone/source/client/payphones.lua @@ -195,7 +195,7 @@ local function play_hangup_visuals() visuals_ending = true local scene = animation_scene local starting_phase = math.max(0.0, math.min(1.0, GetSynchronizedScenePhase(scene))) - local duration_ms = math.max(250, math.floor(tonumber(Config.Payphones.Animation.HangupDurationMs) or 1200)) + local duration_ms = math.max(250, math.floor(tonumber(Config.Payphones.Animation.HangupDurationMs) or 2000)) local started_at = GetGameTimer() SetSynchronizedSceneRate(scene, 0.0) diff --git a/sky_phone/source/server/calls.lua b/sky_phone/source/server/calls.lua index eb64b63..e1f7f5b 100644 --- a/sky_phone/source/server/calls.lua +++ b/sky_phone/source/server/calls.lua @@ -272,7 +272,7 @@ local function finish_call(call, status) if call.payphone then local hangup_duration = math.max( 250, - math.floor(tonumber(Config.Payphones.Animation.HangupDurationMs) or 1200) + math.floor(tonumber(Config.Payphones.Animation.HangupDurationMs) or 2000) ) send_payphone_visual(call, "stop", hangup_duration) end