mods.toml 1.0 KB

123456789101112131415161718192021222324
  1. modLoader="javafml" #mandatory
  2. loaderVersion="[25,)" #mandatory
  3. issueTrackerURL="https://github.com/jaredlll08/Controlling/issues" #optional
  4. displayURL="https://minecraft.curseforge.com/projects/controlling" #optional
  5. authors="Jaredlll08" #optional
  6. [[mods]] #mandatory
  7. modId="controlling" #mandatory
  8. version="4.0.0" #mandatory
  9. displayName="Controlling" #mandatory
  10. description='''
  11. Adds the ability to search for keybinds using their name in the KeyBinding menu, this allows players to easily find a key binding in the menu.
  12. '''
  13. [[dependencies.controlling]] #optional
  14. # the modid of the dependency
  15. modId="forge" #mandatory
  16. # Does this dependency have to exist - if not, ordering below must be specified
  17. mandatory=true #mandatory
  18. # The version range of the dependency
  19. versionRange="[25,)" #mandatory
  20. # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
  21. ordering="NONE"
  22. # Side this dependency is applied on - BOTH, CLIENT or SERVER
  23. side="BOTH"