-
Is there something like this in V Slice? if (PolymodHandler.fetchDependency("intro-mod").active == true) // code This would be useful if let's say if there's one of many songs that only gets added in Freeplay if an optional dependency is installed |
Beta Was this translation helpful? Give feedback.
Answered by
Keoiki
May 13, 2025
Replies: 1 comment
-
You can check the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
MAZ12211
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can check the
PolymodHandler.loadedModIds
array to check if the wanted mod'sid
(i.e. its folder name) is contained within it.Just a simple
PolymodHandler.loadedModIds.contains("modID")
.