Skip to content

Commit

Permalink
docs: fix inconsistent number separator
Browse files Browse the repository at this point in the history
  • Loading branch information
DorielRivalet committed Jul 30, 2023
1 parent 329fda0 commit f3c0b2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ As an added bonus:

```text
Effective HP = True HP / Defense rate
1,000,000 = 30,000 / 0,03
1,000,000 = 30,000 / 0.03
```

- True HP is the HP of the monster without taking into account the monster's defense rate.
Expand Down
2 changes: 1 addition & 1 deletion MHFZ_Overlay/Views/Windows/ConfigWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3557,7 +3557,7 @@ Thunder Clad, Vigorous" Text="{Binding GetActiveSkillsForImage,Mode=OneTime}" Fo
<RowDefinition Height="40"/>
</Grid.RowDefinitions>
<ui:InfoBar Grid.ColumnSpan="2" Foreground="{StaticResource Text}" Title="How Monster HP Works"
Message="Effective HP is the HP taking into account the monster's defense rate.&#x0a;Burning Freezing Elzelion has 1,000,000 EHP because his&#x0a;True HP is 30,000 and his defense rate is 0,03.&#x0a;&#x0a;Effective HP = True HP / Defense rate&#x0a;1,000,000 = 30,000 / 0,03&#x0a;&#x0a;True HP is the HP of the monster without taking into account the monster's defense rate."
Message="Effective HP is the HP taking into account the monster's defense rate.&#x0a;Burning Freezing Elzelion has 1,000,000 EHP because his&#x0a;True HP is 30,000 and his defense rate is 0,03.&#x0a;&#x0a;Effective HP = True HP / Defense rate&#x0a;1,000,000 = 30,000 / 0.03&#x0a;&#x0a;True HP is the HP of the monster without taking into account the monster's defense rate."
IsClosable="False" IsOpen="True" Severity="Informational"/>
<TextBlock Margin="5" ToolTip="Show HP Mode (True/Effective)" Style="{StaticResource ConfigTextBox}" Grid.Row="1" Grid.Column="0" Text="Monster HP Mode Label"/>
<ui:ToggleSwitch HorizontalAlignment="Center" Grid.Row="1" Grid.Column="1" IsChecked="{Binding Source={StaticResource Settings}, Path=MonsterBarHPModeShown}"/>
Expand Down

0 comments on commit f3c0b2c

Please sign in to comment.