Can't tell if an actor is destroyed, because it's destroyed

Hello!

I think I’ve found a bug: I wanted to check if an actor is destroyed or not in blueprint, but when the actor reaches this state, the editor throws an error, that it couldn’t execute this check, because the asked actor is destroyed. To me, this is a bug, because you can work around it by asking if it’s destroyed. Even if there is a way to work around it, the “Is Actor Beeing Destroyed”-node is quite useless, because if it would return true, it can’t be executed.
Will this bug be fixed in the next release?

Hello,

Is Actor Being Destroyed is more of a check to tell you if an actor is in the process of being destroyed. This cannot be used to tell if an actor was destroyed. What you’ll want to do, is after you destroy the actor, set a boolean variable, something along the lines of ActorWasDestroyed. Then, you can reference this variable later to tell whether or not that particular actor was destroyed.

Have a great day,

Sean Flint