So I suggest we add a snippet to Mods to use compare_versions to showcase that it's an option.
I'm thinking something like this
Code: Select all
-- allows using features only available past a certain version
-- while still being compatible with older versions, useful for experimental releases
if helpers.compare_version(mods["base"], "2.0.56") >= 0 then
use_new_features()
end

