Skip to content

Commit

Permalink
Pretty much reverted changes
Browse files Browse the repository at this point in the history
Must have just been a game bug that caused the issue before. Beta.3 increment should work as intended.
  • Loading branch information
M3ales committed Jul 18, 2018
1 parent 6d4e2f9 commit 2295a67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RelationshipTooltips/ModEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ private void CheckForNPCUnderMouse(object sender, EventArgs e)
if(config.displayGiftInfo && Game1.player.CurrentItem != null && Game1.player.CurrentItem.canBeGivenAsGift())
{
selectedGift = Game1.player.CurrentItem;
if (config.playerKnowsAllGifts || (config.recordGiftInfo && !giftSaveInfo.PlayerHasGifted(selectedNPC.name, selectedGift.Name)) || (config.recordGiftInfo && FriendshipKnowsGifts(selectedNPC)))
if (config.playerKnowsAllGifts || (config.recordGiftInfo && giftSaveInfo.PlayerHasGifted(selectedNPC.name, selectedGift.Name)) || (config.recordGiftInfo && FriendshipKnowsGifts(selectedNPC)))
{
selectedNPCGiftOpinion = selectedNPC.getGiftTasteForThisItem(selectedGift);
}else
Expand Down
2 changes: 1 addition & 1 deletion RelationshipTooltips/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Name": "Relationship Tooltips",
"Author": "M3ales",
"Version": "1.2.0-beta",
"Version": "1.2.0-beta.3",
"Description": "Displays NPC relationship tooltip on mouseover, configurable",
"UniqueID": "M3ales.RelationshipTooltips",
"EntryDll": "RelationshipTooltips.dll",
Expand Down

0 comments on commit 2295a67

Please sign in to comment.