Started by
KITNNAXBOX
on
Topic category: Help with Minecraft modding (Java Edition)
Anyone know how I could make my mob attack only when it's night? I am doing a mod in which, most mobs only attack at night, while during the day stay still and do not attack anyone. I've been looking but I can't find any option that lets me modify that.
Under your attack AI set a condition: return not is day
Mob AI
Block: attack for example player
Use conditions: return if not day in the provided world
can you show me?