Skip to content

Commit

Permalink
Docs - Fix newline syntax (#145)
Browse files Browse the repository at this point in the history
* Update finger.mdx

* Update medical.mdx
  • Loading branch information
Kexanone authored Jan 3, 2025
1 parent 0768fd6 commit 9b1db31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/content/docs/components/finger.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Certain aspects of this mod can be configured in the mission header section of a
| m_bCanPingAttach | bool* | true | Whether the ping can attach to entities. |
| m_fPingRangeM | float** | 10.0 | Range of the ping in meters. Only players in range will see it. Anyone can see it if negative. |

\* Note that bool has to be provided as integer in the config: 1 (true) or 0 (false).<br>
\* Note that bool has to be provided as integer in the config: 1 (true) or 0 (false).<br />
\*\* Note that floats need a decimal point to get properly read.

Example for the `missionHeader` in a server config:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/components/medical.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Certain aspects of the medical system can be configured in the mission header se
| m_bHealSupplyUsageEnabled | bool* | true | Healing consumes supplies when enabled. Ignored when global supply usage is disabled. |
| m_fMedicalKitMaxHealScaled | float** | 0.5 | Maximum scaled health (from 0.0 to 1.0) that a medical kit can heal outside of medical facilities. |

\* bool has to be provided as integer in the config: 1 (true) or 0 (false).<br>
\* bool has to be provided as integer in the config: 1 (true) or 0 (false).<br />
\*\* float need a decimal point to get properly read.

Example for the `missionHeader` in a server config:
Expand Down

0 comments on commit 9b1db31

Please sign in to comment.