Checking For Night & Day

So I've created a werewolf for my creatures pack, and I've got a predicate setup checking the time

  "condition": "minecraft:time_check",
  "value": {
    "min": 1000,
    "max": 13000
  }
}
``` I then have this function running off entities with the werewolfTick tag (I tested the function works, I made it do particles and they show up.)

Here's the commands inside it though:

```##################################################################################################################
#Author: Prism_Skywalker
#Date: October 28th 2024
#Descripiton: Summons Mob
#Version: 1.21.3
##################################################################################################################
execute at @s[tag=werewolfVillager] if predicate creatures_unleashed:time_check run function creatures_unleashed:mobs/werewolf/summon
execute at @s[tag=werewolf] unless predicate creatures_unleashed:time_check run function creatures_unleashed:mobs/werewolf/summon_villager
particle smoke ~ ~ ~ 3 0 3 0.01 100```
Continue to help post