那是中文翻譯問題, 在 PoGo.NecroBot.LogicCommonTranslations.cs 中
原文 LookingForIncensePokemon 翻譯成 "使用薰香吸引神奇寶貝"
在 PoGo.NecroBot.LogicTasksCatchIncensePokemonsTask.cs 中
Logger.Write(session.Translation.GetTranslation(TranslationString.LookingForIncensePokemon), LogLevel.Debug); 本來就會一直寫這段 Debug Log 出去....
在移動中
session.EventDispatcher.Send(new FortTargetEvent {Name = fortInfo.Name, Distance = distance});
await session.Navigation.Move(new GeoCoordinate(pokeStop.Latitude, pokeStop.Longitude,
LocationUtils.getElevation(pokeStop.Latitude, pokeStop.Longitude)),
async () =>
{
// Catch normal map Pokemon
await CatchNearbyPokemonsTask.Execute(session, cancellationToken);
//Catch Incense Pokemon
await CatchIncensePokemonsTask.Execute(session, cancellationToken);
return true;
},
session,
cancellationToken);
會定時執行這兩個 tasks, 但實際上並沒有使用 Incense... |