-
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Add overflow crop milestones (#997)
Co-authored-by: HiZe <superhize@hotmail.com> Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
- Loading branch information
1 parent
23a5bc7
commit 37a9fd7
Showing
18 changed files
with
359 additions
and
67 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
38 changes: 38 additions & 0 deletions
38
...annibal2/skyhanni/config/features/garden/cropmilestones/CropMilestonesOverflowConfig.java
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,38 @@ | ||
package at.hannibal2.skyhanni.config.features.garden.cropmilestones; | ||
|
||
import com.google.gson.annotations.Expose; | ||
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean; | ||
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption; | ||
|
||
public class CropMilestonesOverflowConfig { | ||
|
||
@Expose | ||
@ConfigOption(name = "Crop Milestone Display", desc = "Show overflow levels in Crop Milestone display.") | ||
@ConfigEditorBoolean | ||
public boolean cropMilestoneDisplay = false; | ||
|
||
@Expose | ||
@ConfigOption(name = "Best Crop Time", desc = "Show overflow levels in Best Crop Time Display.") | ||
@ConfigEditorBoolean | ||
public boolean bestCropTime = false; | ||
|
||
@Expose | ||
@ConfigOption(name = "Inventory", desc = "Show overflow levels as stack size in the Crop Milestones inventory (will also change milestone average).") | ||
@ConfigEditorBoolean | ||
public boolean inventoryStackSize = false; | ||
|
||
@Expose | ||
@ConfigOption(name = "Tooltip", desc = "Show overflow level progress in the item tooltip in the Crop Milestones inventory.") | ||
@ConfigEditorBoolean | ||
public boolean inventoryTooltip = false; | ||
|
||
@Expose | ||
@ConfigOption(name = "Discord RPC", desc = "Show overflow levels in the Discord RPC milestone display.") | ||
@ConfigEditorBoolean | ||
public boolean discordRPC = false; | ||
|
||
@Expose | ||
@ConfigOption(name = "Chat", desc = "Send a chat message when gaining an overflow milestone level.") | ||
@ConfigEditorBoolean | ||
public boolean chat = false; | ||
} |
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
Oops, something went wrong.