-
-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
overhaul Junimo hut options to provide more flexibility
- Loading branch information
1 parent
364c2d1
commit 06ee523
Showing
18 changed files
with
360 additions
and
221 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.
Oops, something went wrong.