Mod only commands in Java Pircbot

Yeah, I had the bot send a message every time a message was received in my twitch chat and it sent every time. For whatever reason, any time I type one of the commands I wrote in my if/else if ladder, it isn’t recognizing it. The message is being read fine, I have event.getMessage() printing out in the system just to make sure. I’m very confused as to why my if statements are failing, they were all working when I had them in regular PircBot

EDIT: It’s not even going into the if/else if ladder. I just put an else at the end to send a message and even that doesn’t work… I am incredibly confused

Edit 2: It has something to do with this line of code:

ImmutableMap<String, String> userData = event.getTags();

I temporarily disabled it and now my commands are working. This line if I’m not mistaken is for some reason returning or breaking or whatever. It’s stopping my code from going through.