With the new changes for the blackguard, the clang compiler packaged with Xcode 11.3.1 complained about the local variable, target, in effect_handler_MOV_ATTACK() being uninitialized when the condition
is false. Should target be initialized to loc(0, 0) so function will cleanly bail out if the target is not appropriately set?
Code:
(context->dir == DIR_TARGET) && target_okay()
Comment