[Fixed] Bug in AHolySpirit::SpecialBlastHandling

Bugs that have been investigated and resolved somehow.

Moderator: GZDoom Developers

Forum rules
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.
Post Reply
User avatar
Graf Zahl
Lead GZDoom+Raze Developer
Lead GZDoom+Raze Developer
Posts: 49225
Joined: Sat Jul 19, 2003 10:19 am
Location: Germany

Bug in AHolySpirit::SpecialBlastHandling

Post by Graf Zahl »

Somehow this didn't make much sense to me because there is never another value than BLAST_FULLSTRENGTH passed to P_BlastMobj and thus to SpecialBlastHandling so I checked Hexen's original code:

Code: Select all

	if (strength < BLAST_FULLSTRENGTH && tracer == source)
should read

Code: Select all

	if (strength == BLAST_FULLSTRENGTH && tracer == source)
As it is the Wraithverge's spirits cannot be reflected at all by the Disc of Repulsion!
Post Reply

Return to “Closed Bugs [GZDoom]”