by Graf Zahl » Wed Mar 03, 2004 1:52 pm
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!
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]
if (strength < BLAST_FULLSTRENGTH && tracer == source)
[/code]
should read
[code]
if (strength == BLAST_FULLSTRENGTH && tracer == source)
[/code]
As it is the Wraithverge's spirits cannot be reflected at all by the Disc of Repulsion!