Ver Fonte

slightly improved chat messages

Lilith Song há 2 anos atrás
pai
commit
56866ab617
2 ficheiros alterados com 2 adições e 2 exclusões
  1. 1 1
      HuntBuddy/Ipc/EspConsumer.cs
  2. 1 1
      HuntBuddy/Ipc/TeleportConsumer.cs

+ 1 - 1
HuntBuddy/Ipc/EspConsumer.cs

@@ -51,7 +51,7 @@ public class EspConsumer: ConsumerBase {
 		}
 		catch (Exception ex) {
 			Service.PluginLog.Error($"XivEsp is not responding to IPC: {ex}");
-			Service.Chat.PrintError("XivEsp plugin is not responding");
+			Service.Chat.PrintError("XivEsp plugin is not responding", Plugin.Instance.Name);
 			return false;
 		}
 	}

+ 1 - 1
HuntBuddy/Ipc/TeleportConsumer.cs

@@ -31,7 +31,7 @@ public class TeleportConsumer: ConsumerBase {
 			return this.consumerTeleport.InvokeFunc(aetheryteId, 0);
 		}
 		catch {
-			Service.Chat.PrintError("Teleporter plugin is not responding");
+			Service.Chat.PrintError("Teleporter plugin is not responding", Plugin.Instance.Name);
 			return false;
 		}
 	}