|
1 | | -# This is an example mods.toml file. |
2 | | -# Any fields that aren't annotated with #optional are *required*! |
3 | 1 | modLoader = "javafml" |
4 | 2 | loaderVersion = "[40,)" |
5 | | -license = "MIT" # Want to make your mod open source? Check out https://choosealicense.com/! |
6 | | - |
7 | | -# This is a URL to e.g. your GitHub or CurseForge issues page. |
8 | | -# It will appear in any crash reports this mod is directly involved in. |
9 | | -# issueTrackerURL="https://github.com/invalid/pleasechangeme/issues" #optional |
10 | | -# A list of mods - how many allowed here is determined by the individual mod loader |
11 | | - |
| 3 | +license = "MIT" |
12 | 4 | [[mods]] |
13 | 5 | modId = "lead_beyond" |
14 | | -# The version number of the mod - unlike in the Forge MDK, |
15 | | -# we'll use the processResources task to replace this for us |
16 | 6 | version = "${version}" |
17 | 7 | displayName = "Lead Beyond" |
18 | | -# This URL will be queried by the Forge update checker in order to find the latest version of your mod. |
19 | | -# If an update is found, you'll see a little blinking "emerald" symbol on your Mods button! |
20 | | -# updateJSONURL="https://changeme.dev/updates.json" #optional |
21 | | -# This is your mod's "homepage" and will be displayed on the mod's information screen in the Mods panel. |
22 | | -# displayURL="https://changeme.dev/" #optional |
23 | | -# This will be displayed as your mod's logo in the Mods panel. |
24 | | -# logoFile="icon.png" #optional |
25 | | -# Some more fluff displayed in the Mods panel. Feel free to issue your special thanks here! |
26 | | -# credits="Thanks to Mojang for making this great game" #optional |
27 | | -# Some more fluff displayed in the Mods panel. Plug your stuff here! |
28 | | -authors="pkstDev" #optional |
29 | | -# A multi-line description for your mod. This has no minimum length, but it *is* required! |
| 8 | +authors = [ |
| 9 | + "pkstDev", |
| 10 | + "Radekemia" |
| 11 | +] |
30 | 12 | description = ''' |
31 | 13 | Humans lead their way beyond the nature... |
32 | 14 |
|
33 | 15 | A railway-themed decoration mod for Dovecot railway server. |
34 | 16 | ''' |
35 | | - |
36 | | -# An (optional) dependency for your mod. Though technically not required, |
37 | | -# it's always helpful to add these to stop your mod from loading when something is missing |
38 | | -# rather than erroring out later |
39 | | -[[dependencies.lead_beyond]] |
40 | | -modId = "forge" |
41 | | -mandatory = true # do you **need** this mod to be able to launch? |
42 | | -# A version range using interval notation. |
43 | | -# Brackets mean "inclusive" bounds, while parentheses mean "exclusive". |
44 | | -versionRange = "[40,)" # This essentially means any forge >= 40 |
45 | | -ordering = "NONE" # Use this if you want your mod to be loaded specifically BEFORE or AFTER another mod |
46 | | -side = "BOTH" # Specify where this mod is required: can be BOTH, CLIENT or SERVER |
47 | | - |
48 | | -# And another dependency, use this if you want to require a certain Minecraft version. |
49 | 17 | [[dependencies.lead_beyond]] |
50 | 18 | modId = "minecraft" |
51 | 19 | mandatory = true |
52 | | -# See above for how to read this notation, this essentially means any |
53 | | -# version of Minecraft from 1.18.2 (inclusive). |
54 | 20 | versionRange = "[1.18.2,)" |
55 | 21 | ordering = "NONE" |
56 | 22 | side = "BOTH" |
57 | 23 |
|
58 | 24 | [[dependencies.lead_beyond]] |
59 | 25 | modId = "create" |
60 | 26 | mandatory = true |
61 | | -versionRange = "[0.5,)" |
| 27 | +versionRange = "[0.5.1,)" |
62 | 28 | ordering = "AFTER" |
63 | 29 | side = "BOTH" |
0 commit comments