[Solved] Add Movement Input not working after switch on Enum

Hi,
So I’m having a problem where I set a switch on a custom Enum. The switch prevents movement input:

It works fine before the switch is off:

and, when the switch is off, functions as intended:

however, when the switch is turned back on, movement input no longer does anything, even though I have checked all the inputs on the node one by one through print functions and can see by the lines they are being called.

I can’t figure out what would be turned off that would prevent movement after and haven’t been able to find anything through google or the unreal forums (a rare thing). Any help is appreciated. Thank you.

So I figured it out. Apparently, it had nothing to do with the Enum. Another thing my input was doing was turning off capsule collision for my player pawn. Once it was off, I couldn’t move on the forward axis or right/left axis. Still don’t know why, but modifying my collision to overlap all/block worldstatic fixed it.