Minipads seem to only drop glowing flowers after day 0, no matter the time of day.
There were also particles that I believe were supposed to appear when the flowers 'glow' on day 0, but not on other days.
I took a look in src/main/java/com/cgessinger/creaturesandbeasts/entities/MinipadEntity.java and saw that it checked
this.level.getDayTime() > 13000, which might need a modulus operator to make sure this check is valid on every day.
There were other sections in the file which may have similar issues.
Minipads seem to only drop glowing flowers after day 0, no matter the time of day.
There were also particles that I believe were supposed to appear when the flowers 'glow' on day 0, but not on other days.
I took a look in src/main/java/com/cgessinger/creaturesandbeasts/entities/MinipadEntity.java and saw that it checked
this.level.getDayTime() > 13000, which might need a modulus operator to make sure this check is valid on every day.There were other sections in the file which may have similar issues.