Skip to content

Commit

Permalink
fix: Set the Mode Names Properly
Browse files Browse the repository at this point in the history
  • Loading branch information
cow-co committed Nov 24, 2024
1 parent 87ebdec commit 81ab8e9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions components/briefing/briefings/ca_briefing_respawn.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -87,27 +87,27 @@ switch _mode do
};
case _respawnModeTimedTicketsText:
{
_modeName = RESPAWN_MODE_NAME_TIMED;
_modeName = RESPAWN_MODE_NAME_TIMED_TICKETS;
};
case _respawnModeTimedWavesText:
{
_modeName = RESPAWN_MODE_NAME_TIMED;
_modeName = RESPAWN_MODE_NAME_TIMED_WAVES;
};
case _respawnModeTicketsText:
{
_modeName = RESPAWN_MODE_NAME_TIMED;
_modeName = RESPAWN_MODE_NAME_TICKETS;
};
case _respawnModeTimedWavesTicketsText:
{
_modeName = RESPAWN_MODE_NAME_TIMED;
_modeName = RESPAWN_MODE_NAME_TIMED_WAVES_TICKETS;
};
case _respawnModeTriggeredWavesText:
{
_modeName = RESPAWN_MODE_NAME_TIMED;
_modeName = RESPAWN_MODE_NAME_TRIGGERED_WAVES;
};
case _respawnModeTriggeredWavesTicketsText:
{
_modeName = RESPAWN_MODE_NAME_TIMED;
_modeName = RESPAWN_MODE_NAME_TRIGGERED_WAVES_TICKETS;
};
default
{
Expand Down

0 comments on commit 81ab8e9

Please sign in to comment.