You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
found some places where we were improperly defining mod_rank which was causing issues in mod order. mod_rank() should dispatch on a type not on a modification itself so the definition should look something like: mod_rank(::Type{<:CustomMod})
not mod_rank(m::CustomMod)
The text was updated successfully, but these errors were encountered:
We don't have any mods that allow you to set their rank as an input, but we may want to do that eventually. If we are requiring that to be in the type, we will have to parameterize the type, as in below:
found some places where we were improperly defining mod_rank which was causing issues in mod order. mod_rank() should dispatch on a type not on a modification itself so the definition should look something like:
mod_rank(::Type{<:CustomMod})
not
mod_rank(m::CustomMod)
The text was updated successfully, but these errors were encountered: