mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 16:57:22 +01:00
add toggle to hide server info messages
This commit is contained in:
parent
49913a498e
commit
7e87dc61e7
4 changed files with 17 additions and 5 deletions
|
|
@ -234,7 +234,10 @@ public partial class ApiController
|
|||
break;
|
||||
case MessageSeverity.Information:
|
||||
Logger.Info(message);
|
||||
_dalamudUtil.PrintInfoChat(message);
|
||||
if (!_pluginConfiguration.HideInfoMessages)
|
||||
{
|
||||
_dalamudUtil.PrintInfoChat(message);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue