mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 20:07: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>
|
||||
<Authors></Authors>
|
||||
<Company></Company>
|
||||
<Version>0.7.2</Version>
|
||||
<Version>0.7.4</Version>
|
||||
<Description></Description>
|
||||
<Copyright></Copyright>
|
||||
<PackageProjectUrl>https://github.com/Penumbra-Sync/client</PackageProjectUrl>
|
||||
|
|
|
|||
|
|
@ -263,7 +263,7 @@ public partial class ApiController
|
|||
break;
|
||||
case MessageSeverity.Information:
|
||||
Logger.Info(message);
|
||||
if (_configService.Current.HideInfoMessages)
|
||||
if (!_configService.Current.HideInfoMessages)
|
||||
{
|
||||
_dalamudUtil.PrintInfoChat(message);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue