From f6a68bac6ea50ec43c5adb5126ebce0f8a790e32 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Wed, 1 Sep 2021 19:51:06 +0200 Subject: [PATCH] fix: remove annoying log --- Dalamud/Game/Internal/DalamudAtkTweaks.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dalamud/Game/Internal/DalamudAtkTweaks.cs b/Dalamud/Game/Internal/DalamudAtkTweaks.cs index 7379cfc13..3c7cf684a 100644 --- a/Dalamud/Game/Internal/DalamudAtkTweaks.cs +++ b/Dalamud/Game/Internal/DalamudAtkTweaks.cs @@ -75,9 +75,8 @@ namespace Dalamud.Game.Internal private IntPtr AtkUnitBaseReceiveGlobalEventDetour(AtkUnitBase* thisPtr, ushort cmd, uint a3, IntPtr a4, uint* a5) { - Log.Information($"cmd:{cmd} a3:{a3} a4:{a4:x} a5:{*a5}"); - var di = Service.Get(); + // "Close Addon" if (cmd == 12 && di.WindowSystem.HasAnyFocus) return IntPtr.Zero;