diff --git a/GatherBuddy.csproj b/GatherBuddy.csproj index 053562c9..8fb7d59b 100644 --- a/GatherBuddy.csproj +++ b/GatherBuddy.csproj @@ -4,8 +4,8 @@ preview GatherBuddy GatherBuddy - 1.4.1.0 - 1.4.1.0 + 2.0.0.0 + 2.0.0.0 SoftOtter GatherBuddy Copyright © 2020 diff --git a/GatherBuddy.json b/GatherBuddy.json index 19c1fc0a..e6451d41 100644 --- a/GatherBuddy.json +++ b/GatherBuddy.json @@ -3,7 +3,7 @@ "Name": "GatherBuddy", "Description": "Adds commands to simplify gathering by finding nodes and their locations via item name and a UI to keep track of special node uptimes.", "InternalName": "GatherBuddy", - "AssemblyVersion": "1.4.1.0", + "AssemblyVersion": "2.0.0.0", "RepoUrl": "https://github.com/Ottermandias/GatherBuddy", "ApplicableVersion": "any", "DalamudApiLevel": 3 diff --git a/Gatherer.cs b/Gatherer.cs index 3be452e1..76383cff 100644 --- a/Gatherer.cs +++ b/Gatherer.cs @@ -426,7 +426,7 @@ public void OnFishActionWithFish(Fish? fish, string fishName = "") if (_configuration.IdentifiedFishingSpotFormat.Length > 0) _chat.Print(ReplaceFormatPlaceholders(_configuration.IdentifiedFishingSpotFormat, fishName, fish!, closestSpot)); if (_configuration.PrintGighead && fish!.IsSpearFish) - _chat.Print($"Use {fish.Gig} gig head."); + _chat.Print($"Use {(fish.Gig != GigHead.Unknown ? fish.Gig : fish.CatchData?.GigHead ?? GigHead.Unknown)} gig head."); PluginLog.Verbose(GatherBuddyConfiguration.DefaultIdentifiedFishingSpotFormat, closestSpot.PlaceName![_language], fish!.Name![_language]);