When using the debug, my status window produces this.

Just in case, this is the entire code I am working with (I know it is messy). Something tells me something with Twitch has changed since around Jan/Feb when this happened and users could announce their total time subscribed and not just how long they resubbed in a row.

Code:
raw USERNOTICE:*:{
  if (($msgtags(msg-id).key == sub) && ($1 == #moonmoon_ow)) {
    var %nick $iif($msgtags(display-name).key, $v1, $msgtags(login).key)
    msg $1 moon2M Welcome %nick to the bald club moon2M
  }
  elseif (($msgtags(msg-id).key == resub) && ($1 == #moonmoon_ow)) {
    var %nick $iif($msgtags(display-name).key, $v1, $msgtags(login).key)
    if ($0 == 1) {
      msg $1 moon2B Thanks %nick for for $msgtags(msg-param-months).key months in a row! moon2B That's pretty cringe moon2B
    }
    else {
      msg $1 moon2B Thanks %nick for for $msgtags(msg-param-months).key months in a row! moon2B That's pretty cringe moon2B
    }
  }
  elseif (($msgtags(msg-id).key == subgift) && ($1 == #moonmoon_ow)) {
    var %nick_from $iif($msgtags(display-name).key, $v1, $msgtags(login).key) , %nick_to $iif($msgtags(msg-param-recipient-display-name).key, $v1, $msgtags(msg-param-recipient-user-name).key){
    msg $1 moon2B Thanks %nick_from for forcing a sub to %nick_to moon2B
  }
}