mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 16:07:45 +00:00
- fixed: The Wraithverge's sprits couldn't be blasted anymore due to some incomplete changes related to how A_Blast handles the blast strength. AHolySpirit::SpecialBlastHandling still used the obsolete BLAST_FULLSTRENGTH constant.
SVN r3698 (trunk)
This commit is contained in:
parent
7d3d09e523
commit
67e4d93395
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ bool AHolySpirit::Slam (AActor *thing)
|
||||||
|
|
||||||
bool AHolySpirit::SpecialBlastHandling (AActor *source, fixed_t strength)
|
bool AHolySpirit::SpecialBlastHandling (AActor *source, fixed_t strength)
|
||||||
{
|
{
|
||||||
if (strength == BLAST_FULLSTRENGTH && tracer == source)
|
if (tracer == source)
|
||||||
{
|
{
|
||||||
tracer = target;
|
tracer = target;
|
||||||
target = source;
|
target = source;
|
||||||
|
|
Loading…
Reference in a new issue