Quality order
Posted: Sat Jan 24, 2026 1:52 pm
Im trying to make a mod that will change quality order to ...Legendary => Legendary-plus => Mythical...
Legendary-plus and Mythical are from 2 different mods, and basic order when im not using my mod is ...Legendary => Mythical... so its basically skipping the Legendary-plus level. I tryed to make a mod and this what i coded in data-final-fixes.lua
But for some reason it only changes order to ...Legendary => Legendary-plus and it just ends there, it seems im doing something wrong, but i cant get what exactly
Legendary-plus and Mythical are from 2 different mods, and basic order when im not using my mod is ...Legendary => Mythical... so its basically skipping the Legendary-plus level. I tryed to make a mod and this what i coded in data-final-fixes.lua
Code: Select all
if mods["QualityPlus"] and mods["Quality-Plus-Plus"] then
data.raw.quality.legendary.next = "legendary-plus"
data.raw["quality"]["legendary-plus"].next = "mythical"
end