diff --git a/PoGo.NecroBot.CLI/ConsoleEventListener.cs b/PoGo.NecroBot.CLI/ConsoleEventListener.cs index 763038283..03511682c 100644 --- a/PoGo.NecroBot.CLI/ConsoleEventListener.cs +++ b/PoGo.NecroBot.CLI/ConsoleEventListener.cs @@ -100,7 +100,7 @@ private static void HandleEvent(FortUsedEvent fortUsedEvent, ISession session) : fortUsedEvent.Items; Logger.Write( session.Translation.GetTranslation(TranslationString.EventFortUsed, fortUsedEvent.Name, fortUsedEvent.Exp, fortUsedEvent.Gems, - itemString), + itemString, fortUsedEvent.Latitude, fortUsedEvent.Longitude), LogLevel.Pokestop); } diff --git a/PoGo.NecroBot.Logic/Common/Translations.cs b/PoGo.NecroBot.Logic/Common/Translations.cs index 89b04f913..9fe85e784 100644 --- a/PoGo.NecroBot.Logic/Common/Translations.cs +++ b/PoGo.NecroBot.Logic/Common/Translations.cs @@ -171,7 +171,7 @@ public class Translation : ITranslation new KeyValuePair(TranslationString.FarmPokestopsNoUsableFound, "No usable PokeStops found in your area. Is your maximum distance too small?"), new KeyValuePair(TranslationString.EventFortUsed, - "Name: {0} XP: {1}, Gems: {2}, Items: {3}"), + "Name: {0} XP: {1}, Gems: {2}, Items: {3}, Lat: {4}, Long: {5}"), new KeyValuePair(TranslationString.EventFortFailed, "Name: {0} INFO: Looting failed, possible softban. Unban in: {1}/{2}"), new KeyValuePair(TranslationString.EventFortTargeted,