From 69cbb7a38267009df403f7a29aa71ed187fe4d9d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 19 Apr 2016 00:52:08 +0200 Subject: [PATCH 1/2] - fixed: The pitch calculation did not check the calling actor's height when retrieving the position to calculate the pitch from. --- src/p_enemy.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/p_enemy.cpp b/src/p_enemy.cpp index 19b916956..047b11e9a 100644 --- a/src/p_enemy.cpp +++ b/src/p_enemy.cpp @@ -2856,6 +2856,10 @@ void A_Face(AActor *self, AActor *other, DAngle max_turn, DAngle max_pitch, DAng { target_z = other->Center(); } + if (source_z >= self->Top()) + { + source_z = self->Center(); + } //Note there is no +32 on purpose. This is for customization sake. //If one doesn't want this behavior, just don't use FAF_BOTTOM. From e48c4d3e445e436333647a853e7fe1220b28fadb Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 19 Apr 2016 01:00:09 +0200 Subject: [PATCH 2/2] - added tag strings for Heretic's powered weapon versions. --- wadsrc/static/language.enu | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wadsrc/static/language.enu b/wadsrc/static/language.enu index 3217c7fce..62761a417 100644 --- a/wadsrc/static/language.enu +++ b/wadsrc/static/language.enu @@ -869,6 +869,15 @@ TAG_SKULLROD = "Hellstaff"; TAG_PHOENIXROD = "Phoenix Rod"; TAG_MACE = "Firemace"; +TAG_STAFFP = "Staff"; +TAG_GAUNTLETSP = "Gauntlets of the Necromancer"; +TAG_GOLDWANDP = "Elven Wand"; +TAG_CROSSBOWP = "Ethereal Crossbow"; +TAG_BLASTERP = "Dragon Claw"; +TAG_SKULLRODP = "Hellstaff"; +TAG_PHOENIXRODP = "Phoenix Rod"; +TAG_MACEP = "Firemace"; + // Item tags: Heretic artifacts TAG_ARTIEGG = "Morph Ovum"; TAG_ARTIFIREBOMB = "Timebomb of the Ancients";