Skip to content

Commit

Permalink
Merge pull request #75 from kristian-skistad/master
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkfalcon authored Nov 10, 2024
2 parents 77b5453 + 1ab8a7b commit c1048b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BetterJunimos/Abilities/Base/PlantCropsAbility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ private bool IsTrellisCrop(Item item, GameLocation location) {
//Verify if the item is a crop seed
private bool IsCrop(Item item, GameLocation location) {
var objCrop = new StardewValley.Object(item.ItemId, 1);
return objCrop.Category == -74 && item.ItemId != "770" && item.ItemId != "MixedFlowerSeeds";
return objCrop.Category == -74 && item.ItemId != "770" && item.ItemId != "MixedFlowerSeeds" && !Tree.GetWildTreeSeedLookup().Keys.Contains(item.ItemId) && !Game1.fruitTreeData.Keys.Contains(item.ItemId);
}

public List<string> RequiredItems() {
Expand Down
2 changes: 1 addition & 1 deletion BetterJunimos/BetterJunimos.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<AssemblyName>BetterJunimos</AssemblyName>
<RootNamespace>BetterJunimos</RootNamespace>
<Version>3.0.4</Version>
<Version>3.0.5</Version>
<LangVersion>latest</LangVersion>
<TargetFramework>net6.0</TargetFramework>
<EnableHarmony>true</EnableHarmony>
Expand Down
2 changes: 1 addition & 1 deletion BetterJunimos/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Name": "Better Junimos",
"Author": "ceruleandeep",
"Version": "3.0.4",
"Version": "3.0.5",
"Description": "Allow your Junimos (from Junimo huts) to automatically plant seeds, fertilize, and so much more!",
"UniqueID": "hawkfalcon.BetterJunimos",
"EntryDll": "BetterJunimos.dll",
Expand Down

0 comments on commit c1048b6

Please sign in to comment.