File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ export function displayPhase(skipMessages = false) {
201201 _updateMapOwnership ( ) ;
202202
203203 // Add phase info to news banner if not already there
204- const phaseBannerText = `Phase: ${ currentPhase . name } ` ;
204+ const phaseBannerText = `Phase: ${ currentPhase . name } : ${ currentPhase . summary } ` ;
205205 addToNewsBanner ( phaseBannerText ) ;
206206
207207 // Log phase details to console only, don't update info panel with this
@@ -277,10 +277,6 @@ export function advanceToNextPhase() {
277277
278278 // First show summary if available
279279 if ( currentPhase . summary && currentPhase . summary . trim ( ) !== '' ) {
280- // Update the news banner with full summary
281- addToNewsBanner ( `(${ currentPhase . name } ) ${ currentPhase . summary } ` ) ;
282- console . log ( "Added summary to news banner, preparing to call speakSummary" ) ;
283-
284280 // Speak the summary and advance after
285281 if ( ! gameState . isSpeaking ) {
286282 speakSummary ( currentPhase . summary )
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ sleep 5 # let the page load or animations start
4141# - For audio: pulse from the "default" device
4242# Adjust your bitrate, resolution, frame rate, etc. as desired.
4343exec ffmpeg -y \
44- -g 60 \
4544 -f x11grab -thread_queue_size 512 -r 30 -s 1920x1080 -i $DISPLAY \
4645 -f pulse -thread_queue_size 512 -i default \
4746 -c:v libx264 -preset veryfast -b:v 6000k -maxrate 6000k -bufsize 12000k \
You can’t perform that action at this time.
0 commit comments