summaryrefslogtreecommitdiff
path: root/src/strife/p_pspr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strife/p_pspr.c')
-rw-r--r--src/strife/p_pspr.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/strife/p_pspr.c b/src/strife/p_pspr.c
index 42a6bd7b..269b60b0 100644
--- a/src/strife/p_pspr.c
+++ b/src/strife/p_pspr.c
@@ -786,7 +786,10 @@ void A_FireSigil(player_t* player, pspdef_t* pspr)
// keep info on armor because sigil does piercing damage
i = player->armortype;
player->armortype = 0;
- P_DamageMobj(player->mo, player->mo, 0, 4 * (player->sigiltype + 1));
+
+ // BUG: setting inflictor causes firing the Sigil to always push the player
+ // toward the east, no matter what direction he is facing.
+ P_DamageMobj(player->mo, player->mo, NULL, 4 * (player->sigiltype + 1));
// restore armor
player->armortype = i;