Fixed lack of braces.
No real-world effect, but it's still wrong.
This commit is contained in:
parent
31f9097ce0
commit
341ef6907a
|
@ -54,9 +54,11 @@ void events_init()
|
||||||
case MISN_INTERCEPTION:
|
case MISN_INTERCEPTION:
|
||||||
if ((aliens[ALIEN_KLINE].classDef == CD_KLINE) &&
|
if ((aliens[ALIEN_KLINE].classDef == CD_KLINE) &&
|
||||||
(aliens[ALIEN_KLINE].active))
|
(aliens[ALIEN_KLINE].active))
|
||||||
|
{
|
||||||
events[0].time = 2;
|
events[0].time = 2;
|
||||||
events[0].face = FS_KLINE;
|
events[0].face = FS_KLINE;
|
||||||
strcpy(events[0].message, klineGreeting[rand() % 4]);
|
strcpy(events[0].message, klineGreeting[rand() % 4]);
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue