summaryrefslogtreecommitdiff
path: root/src/p_inter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/p_inter.c')
-rw-r--r--src/p_inter.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/p_inter.c b/src/p_inter.c
index 484178dd..64b9bc81 100644
--- a/src/p_inter.c
+++ b/src/p_inter.c
@@ -411,7 +411,9 @@ P_TouchSpecialThing
return;
player->health = deh_megasphere_health;
player->mo->health = player->health;
- P_GiveArmor (player, deh_blue_armor_class);
+ // We always give armor type 2 for the megasphere; dehacked only
+ // affects the MegaArmor.
+ P_GiveArmor (player, 2);
player->message = DEH_String(GOTMSPHERE);
sound = sfx_getpow;
break;