mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 19:47:21 +01:00
fix inversion of hide server info messages
This commit is contained in:
parent
451d604f70
commit
49bf5bcf13
3 changed files with 3 additions and 3 deletions
2
MareAPI
2
MareAPI
|
|
@ -1 +1 @@
|
||||||
Subproject commit 0d04aaafac59b20f35715b0e5d00fce93c1838af
|
Subproject commit 7c5bf39c31bd9d9e688649ba0b6855839ae92be9
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Authors></Authors>
|
<Authors></Authors>
|
||||||
<Company></Company>
|
<Company></Company>
|
||||||
<Version>0.7.2</Version>
|
<Version>0.7.4</Version>
|
||||||
<Description></Description>
|
<Description></Description>
|
||||||
<Copyright></Copyright>
|
<Copyright></Copyright>
|
||||||
<PackageProjectUrl>https://github.com/Penumbra-Sync/client</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/Penumbra-Sync/client</PackageProjectUrl>
|
||||||
|
|
|
||||||
|
|
@ -263,7 +263,7 @@ public partial class ApiController
|
||||||
break;
|
break;
|
||||||
case MessageSeverity.Information:
|
case MessageSeverity.Information:
|
||||||
Logger.Info(message);
|
Logger.Info(message);
|
||||||
if (_configService.Current.HideInfoMessages)
|
if (!_configService.Current.HideInfoMessages)
|
||||||
{
|
{
|
||||||
_dalamudUtil.PrintInfoChat(message);
|
_dalamudUtil.PrintInfoChat(message);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue