Wabbit0101/mods_hoardercraft

[VEP] Mod Compatibility with Dragon Survival.

KateReller opened this issue · 1 comments

In Dragon Survival, there is a mechanic that when dragons eat food, that is not on a certain list, they will get a hunger debuff. But all edible food from this mod can be eaten without penalties, even if it's not on the whitelist for that dragon type.

Not sure there's anything to be done with this incompatibility. Dragon Survival overwrites/mixins the LivingEntity and PlayerEntity "do eat" methods rather than the Item's "on finish use" which is where their changes would have to reside to work with VFP. VFP has it's own functionality associated with its items that cannot be done via the inherited entity's eating response (for example multi-use, insta-eating, survival-mod integration, etc.). As an aside VFP does not use the mixin technique; it just alters it's own food items so even a hack-config to disable custom use code won't work as the best VFP would do is to NOT do its own functionality (call super) thereby crippling VFP foods for all other non-dragoney uses.