Skip to content

Commit f3ad07d

Browse files
committed
fix: fixed an issue were one row patterns wouldnt reactivate correctly
closes: #51
1 parent 32f50cf commit f3ad07d

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

‎CHANGELOG.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
### Fixed
1212

1313
- Fixed the export button not showing whent the plugin was closed without returning to menu
14+
- (EVH) Fixed an issue were one row patterns would not reactivate correctly
1415

1516
## [3.0.0-rc.2] - 2025-10-02
1617

‎src/handler/EVHEvent/loader/modules/main.luau‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,11 @@ local function vehicleFunctionUpdate(vehicle: Instance, functionName: string, fu
505505
vehicleData.lights[rotator.lightName].returnToZero = false
506506
end
507507
pattern.patternTime = 0
508+
509+
for _, flasherSection in pairs(pattern.flashers) do
510+
flasherSection.currentRow = nil
511+
end
512+
508513
table.insert(runningPatterns, pattern)
509514
bindToRender()
510515
-- flashers.addPattern(pattern)

0 commit comments

Comments
 (0)