Like the title, i'm using PureEntitiesX and how can i turn off burn by daylight for zombies and skeletons? Thanks
I think the only way to do that is commenting/removing out the part of code that does that for each entity that burns at daytime (List). Code which has to be removed/commented out: PHP: $time = $this->getLevel() ? $this->getLevel()->getTime() % Level::TIME_FULL : Level::TIME_NIGHT;if(!$this->isOnFire()&& ($time < Level::TIME_NIGHT || $time > Level::TIME_SUNRISE)){$this->setOnFire(100);}