-
-
Notifications
You must be signed in to change notification settings - Fork 387
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #763 from kzawora/feature/transfer_seeds_to_junimo…
…_huts [Automate] Add option to transfer seeds and fertilizers into Junimo huts
- Loading branch information
Showing
18 changed files
with
372 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace Pathoschild.Stardew.Automate.Framework.Models | ||
{ | ||
/// <summary>Indicates how Junimo huts should be automated for a specific item type.</summary> | ||
internal enum JunimoHutBehavior | ||
{ | ||
/// <summary>Apply the default logic based on the player's installed mods (e.g. leave seeds in the hut if Better Junimos is installed).</summary> | ||
AutoDetect, | ||
|
||
/// <summary>Ignore items of this type, so they're not transferred either way.</summary> | ||
Ignore, | ||
|
||
/// <summary>Move any items of this type from the Junimo Hut into connected chests.</summary> | ||
MoveIntoChests, | ||
|
||
/// <summary>Move any items of this type from connected chests into the Junimo Hut.</summary> | ||
MoveIntoHut | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.