Skip to content

Commit

Permalink
Pushed Version to 2.0.0.0 for big Release, bugfixes to follow.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Apr 14, 2021
1 parent a7da559 commit f28dbb8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GatherBuddy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<LangVersion>preview</LangVersion>
<RootNamespace>GatherBuddy</RootNamespace>
<AssemblyName>GatherBuddy</AssemblyName>
<FileVersion>1.4.1.0</FileVersion>
<AssemblyVersion>1.4.1.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<Company>SoftOtter</Company>
<Product>GatherBuddy</Product>
<Copyright>Copyright © 2020</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion GatherBuddy.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Gatherer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down

0 comments on commit f28dbb8

Please sign in to comment.