TelepathicGrunt / RepurposedStructures

Reusing and modifying vanilla structures for extra variety!
https://www.curseforge.com/minecraft/mc-mods/repurposed-structures
GNU Lesser General Public License v3.0
164 stars 26 forks source link

Warning in server latest.log #204

Closed cpm9 closed 2 years ago

cpm9 commented 2 years ago

[17May2022 23:22:14.435] [main/WARN] [mixin/]: @ModifyConstant conflict. Skipping yungsapi.mixins.json:IncreaseStructureWeightLimitMixin->@ModifyConstant::yungsapi_increaseWeightLimit(I)I with priority 1000, already redirected by repurposed_structures.mixins.json:structures.StructurePoolMixin->@ModifyConstant::repurposedstructures_increaseWeightLimitDev(I)I with priority 1000

MC 1.18.2 forge 40.1.20 repurposed 5.17 yung api 2.0.8

TelepathicGrunt commented 2 years ago

This is intended behavior. Me and yung’s needs to increase the maximum weight allowed for template pool entries. So we use a modify constant mixin to do so. This mixin cannot stack so we just set required = 0 for the mixin so that only one of our mixins applies if the other mod’s applies first.

Please ignore that log message. It is just saying our mods are working as intended