Skip to content
This repository was archived by the owner on Apr 29, 2025. It is now read-only.

Commit 93e40ac

Browse files
authored
fix(client/progress): playEnter arg for scenarios in progress bar (#671)
1 parent d142d8d commit 93e40ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resource/interface/client/progress.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ local function startProgress(data)
7474
TaskPlayAnim(cache.ped, anim.dict, anim.clip, anim.blendIn or 3.0, anim.blendOut or 1.0, anim.duration or -1, anim.flag or 49, anim.playbackRate or 0, anim.lockX, anim.lockY, anim.lockZ)
7575
RemoveAnimDict(anim.dict)
7676
elseif anim.scenario then
77-
TaskStartScenarioInPlace(cache.ped, anim.scenario, 0, anim.playEnter ~= nil and anim.playEnter or true)
77+
TaskStartScenarioInPlace(cache.ped, anim.scenario, 0, anim.playEnter == nil or anim.playEnter)
7878
end
7979
end
8080

0 commit comments

Comments
 (0)