summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/p_doors.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/p_doors.c')
-rw-r--r--apps/plugins/doom/p_doors.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/doom/p_doors.c b/apps/plugins/doom/p_doors.c
index 9d8f28cd7a..0b6d777e17 100644
--- a/apps/plugins/doom/p_doors.c
+++ b/apps/plugins/doom/p_doors.c
@@ -36,7 +36,7 @@
36#include "sounds.h" 36#include "sounds.h"
37#include "r_main.h" 37#include "r_main.h"
38#include "dstrings.h" 38#include "dstrings.h"
39//#include "d_deh.h" // Ty 03/27/98 - externalized 39#include "d_deh.h" // Ty 03/27/98 - externalized
40 40
41#include "rockmacros.h" 41#include "rockmacros.h"
42 42
@@ -295,7 +295,7 @@ int EV_DoLockedDoor
295 case 133: 295 case 133:
296 if (!p->cards[it_bluecard] && !p->cards[it_blueskull]) 296 if (!p->cards[it_bluecard] && !p->cards[it_blueskull])
297 { 297 {
298 p->message = PD_BLUEO; // Ty 03/27/98 - externalized 298 p->message = s_PD_BLUEO; // Ty 03/27/98 - externalized
299 S_StartSound(p->mo,sfx_oof); // killough 3/20/98 299 S_StartSound(p->mo,sfx_oof); // killough 3/20/98
300 return 0; 300 return 0;
301 } 301 }
@@ -305,7 +305,7 @@ int EV_DoLockedDoor
305 case 135: 305 case 135:
306 if (!p->cards[it_redcard] && !p->cards[it_redskull]) 306 if (!p->cards[it_redcard] && !p->cards[it_redskull])
307 { 307 {
308 p->message = PD_REDO; // Ty 03/27/98 - externalized 308 p->message = s_PD_REDO; // Ty 03/27/98 - externalized
309 S_StartSound(p->mo,sfx_oof); // killough 3/20/98 309 S_StartSound(p->mo,sfx_oof); // killough 3/20/98
310 return 0; 310 return 0;
311 } 311 }
@@ -315,7 +315,7 @@ int EV_DoLockedDoor
315 case 137: 315 case 137:
316 if (!p->cards[it_yellowcard] && !p->cards[it_yellowskull]) 316 if (!p->cards[it_yellowcard] && !p->cards[it_yellowskull])
317 { 317 {
318 p->message = PD_YELLOWO; // Ty 03/27/98 - externalized 318 p->message = s_PD_YELLOWO; // Ty 03/27/98 - externalized
319 S_StartSound(p->mo,sfx_oof); // killough 3/20/98 319 S_StartSound(p->mo,sfx_oof); // killough 3/20/98
320 return 0; 320 return 0;
321 } 321 }
@@ -449,7 +449,7 @@ int EV_VerticalDoor
449 return 0; 449 return 0;
450 if (!player->cards[it_bluecard] && !player->cards[it_blueskull]) 450 if (!player->cards[it_bluecard] && !player->cards[it_blueskull])
451 { 451 {
452 player->message = PD_BLUEK; // Ty 03/27/98 - externalized 452 player->message = s_PD_BLUEK; // Ty 03/27/98 - externalized
453 S_StartSound(player->mo,sfx_oof); // killough 3/20/98 453 S_StartSound(player->mo,sfx_oof); // killough 3/20/98
454 return 0; 454 return 0;
455 } 455 }
@@ -461,7 +461,7 @@ int EV_VerticalDoor
461 return 0; 461 return 0;
462 if (!player->cards[it_yellowcard] && !player->cards[it_yellowskull]) 462 if (!player->cards[it_yellowcard] && !player->cards[it_yellowskull])
463 { 463 {
464 player->message = PD_YELLOWK; // Ty 03/27/98 - externalized 464 player->message = s_PD_YELLOWK; // Ty 03/27/98 - externalized
465 S_StartSound(player->mo,sfx_oof); // killough 3/20/98 465 S_StartSound(player->mo,sfx_oof); // killough 3/20/98
466 return 0; 466 return 0;
467 } 467 }
@@ -473,7 +473,7 @@ int EV_VerticalDoor
473 return 0; 473 return 0;
474 if (!player->cards[it_redcard] && !player->cards[it_redskull]) 474 if (!player->cards[it_redcard] && !player->cards[it_redskull])
475 { 475 {
476 player->message = PD_REDK; // Ty 03/27/98 - externalized 476 player->message = s_PD_REDK; // Ty 03/27/98 - externalized
477 S_StartSound(player->mo,sfx_oof); // killough 3/20/98 477 S_StartSound(player->mo,sfx_oof); // killough 3/20/98
478 return 0; 478 return 0;
479 } 479 }