@@ -239,6 +239,8 @@ class rlmal_EventHandler : StaticEventHandler
239
239
name tn = ' RLCyberdemon' ;
240
240
event . replacement = (class < Actor>)(tn);
241
241
}
242
+
243
+ break ;
242
244
case RLMAL_CAT_NIGHTMARE:
243
245
if (RandomPick [rlmal](0 , 1 , 2 , 3 ) == 0 )
244
246
{
@@ -250,6 +252,8 @@ class rlmal_EventHandler : StaticEventHandler
250
252
name tn = ' RLNightmareCyberdemon' ;
251
253
event . replacement = (class < Actor>)(tn);
252
254
}
255
+
256
+ break ;
253
257
case RLMAL_CAT_CYBERNETIC:
254
258
if (RandomPick [rlmal](0 , 1 , 2 , 3 ) == 0 )
255
259
{
@@ -261,11 +265,14 @@ class rlmal_EventHandler : StaticEventHandler
261
265
name tn = ' RLCyberneticCyberdemon' ;
262
266
event . replacement = (class < Actor>)(tn);
263
267
}
268
+
269
+ break ;
264
270
case RLMAL_CAT_ARMAGGEDON:
265
271
{
266
272
// TODO: an armageddon cyberdemon may be added here eventually.
267
273
name tn = ' RLAbominant' ;
268
274
event . replacement = (class < Actor>)(tn);
275
+ break ;
269
276
}
270
277
}
271
278
@@ -284,6 +291,8 @@ class rlmal_EventHandler : StaticEventHandler
284
291
name tn = ' RLSpiderMastermind' ;
285
292
event . replacement = (class < Actor>)(tn);
286
293
}
294
+
295
+ break ;
287
296
case RLMAL_CAT_NIGHTMARE:
288
297
if (RandomPick [rlmal](0 , 1 , 2 , 3 ) == 0 )
289
298
{
@@ -295,6 +304,8 @@ class rlmal_EventHandler : StaticEventHandler
295
304
name tn = ' RLNightmareSpiderMastermind' ;
296
305
event . replacement = (class < Actor>)(tn);
297
306
}
307
+
308
+ break ;
298
309
case RLMAL_CAT_CYBERNETIC:
299
310
if (RandomPick [rlmal](0 , 1 , 2 , 3 ) == 0 )
300
311
{
@@ -306,11 +317,14 @@ class rlmal_EventHandler : StaticEventHandler
306
317
name tn = ' RLCyberneticSpiderMastermind' ;
307
318
event . replacement = (class < Actor>)(tn);
308
319
}
320
+
321
+ break ;
309
322
case RLMAL_CAT_ARMAGGEDON:
310
323
{
311
324
// TODO: an armageddon mastermind may be added here eventually.
312
325
name tn = ' RLAbominant' ;
313
326
event . replacement = (class < Actor>)(tn);
327
+ break ;
314
328
}
315
329
}
316
330
0 commit comments