Skip to content

Commit

Permalink
#4431: Fix elevator videos not appearing.
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Jun 18, 2024
1 parent 3e0f30c commit a2e49f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

### Bugfixes:
* The case where no voicelines are set is once again handled correctly.
* #4431: Fix monitors not showing the voiceline character
* #4431: Fix monitors not showing the voiceline character.
* #4431: Fix elevator videos not appearing.

### UCP-Relevant changes:
* Add `SweepTrace` mode to `Collisions` result. This allows creating collisions
Expand Down
1 change: 1 addition & 0 deletions src/exporting/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ async def step_write_vbsp_config(exp: ExportData) -> None:
'Fizzlers',
'Options',
'StyleVars',
'Elevator',
'Barriers',
'BarrierFrames',
'BarrierHoles',
Expand Down
2 changes: 1 addition & 1 deletion src/vbsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ def set_elev_videos(vmf: VMF, info: corridor.Info) -> None:
vert_vid = None
horiz_vid = None
else:
LOGGER.warning('Invalid elevator video type!')
LOGGER.warning('Invalid elevator video type: {!r}', vid_type)
return

transition_ents = instanceLocs.resolve_filter('[transitionents]')
Expand Down

0 comments on commit a2e49f2

Please sign in to comment.