Skip to content

Commit caa6c27

Browse files
committed
Period
1 parent 32d2200 commit caa6c27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/gettingstarted/modfiles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Mods can specify their dependencies, which are checked by NeoForge before loadin
126126
|:---------------|:------:|:-------------:|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:---------------------------------------------|
127127
| `modId` | string | **mandatory** | The identifier of the mod added as a dependency. | `modId="jei"` |
128128
| `type` | string | `required` | Replaced the `mandatory` field in NeoForge 20.4.40-beta. Specifies the nature of this dependency: `required` is the default and prevents the mod from loading if this dependency is missing; `optional` will not prevent the mod from loading if the dependency is missing, but still validates that the dependency is compatible; `incompatible` prevents the mod from loading if this dependency is present; `discouraged` still allows the mod to load if the dependency is present, but presents a warning to the user. | `type=incompatible` |
129-
| `reason` | string | *nothing* | Available since NeoForge 20.4.40-beta. An optional user-facing message to describe why this dependency is required, or why it is incompatible |
129+
| `reason` | string | *nothing* | Available since NeoForge 20.4.40-beta. An optional user-facing message to describe why this dependency is required, or why it is incompatible. |
130130
| `versionRange` | string | `""` | The acceptable version range of the language loader, expressed as a [Maven Version Range][mvr]. An empty string matches any version. | `versionRange="[1, 2)"` |
131131
| `ordering` | string | `"NONE"` | Defines if the mod must load before (`"BEFORE"`) or after (`"AFTER"`) this dependency. If the ordering does not matter, return `"NONE"` | `ordering="AFTER"` |
132132
| `side` | string | `"BOTH"` | The [physical side][dist] the dependency must be present on: `"CLIENT"`, `"SERVER"`, or `"BOTH"`. | `side="CLIENT"` |

0 commit comments

Comments
 (0)