Skip to content

Commit

Permalink
fix single letter vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Blundir committed Nov 23, 2024
1 parent 24e2578 commit bd84103
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions code/game/gamemodes/colonialmarines/colonialmarines.dm
Original file line number Diff line number Diff line change
Expand Up @@ -602,9 +602,9 @@
else
end_icon = "draw"
musical_track = 'sound/theme/neutral_hopeful2.ogg'
var/sound/S = sound(musical_track, channel = SOUND_CHANNEL_LOBBY)
S.status = SOUND_STREAM
sound_to(world, S)
var/sound/theme = sound(musical_track, channel = SOUND_CHANNEL_LOBBY)
theme.status = SOUND_STREAM
sound_to(world, theme)
if(GLOB.round_statistics)
GLOB.round_statistics.game_mode = name
GLOB.round_statistics.round_length = world.time
Expand Down
6 changes: 3 additions & 3 deletions code/game/gamemodes/colonialmarines/xenovsxeno.dm
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@
var/musical_track
musical_track = pick('sound/theme/neutral_melancholy1.ogg', 'sound/theme/neutral_melancholy2.ogg')

var/sound/S = sound(musical_track, channel = SOUND_CHANNEL_LOBBY)
S.status = SOUND_STREAM
sound_to(world, S)
var/sound/theme = sound(musical_track, channel = SOUND_CHANNEL_LOBBY)
theme.status = SOUND_STREAM
sound_to(world, theme)
if(GLOB.round_statistics)
GLOB.round_statistics.game_mode = name
GLOB.round_statistics.round_length = world.time
Expand Down
6 changes: 3 additions & 3 deletions code/game/gamemodes/extended/cm_vs_upp.dm
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
else
end_icon = "draw"
musical_track = 'sound/theme/neutral_hopeful2.ogg'
var/sound/S = sound(musical_track, channel = SOUND_CHANNEL_LOBBY)
S.status = SOUND_STREAM
sound_to(world, S)
var/sound/theme = sound(musical_track, channel = SOUND_CHANNEL_LOBBY)
theme.status = SOUND_STREAM
sound_to(world, theme)

calculate_end_statistics()
show_end_statistics(end_icon)
Expand Down

0 comments on commit bd84103

Please sign in to comment.