blob: 05d85246d67a252176e60941032683bfde008d6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package at.hannibal2.skyhanni.config.features.garden;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.features.garden.inventory.plots.GardenPlotIcon;
import at.hannibal2.skyhanni.utils.HypixelCommands;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorButton;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class PlotIconConfig {
@Expose
@ConfigOption(name = "Enable", desc = "Enable icon replacement in the Configure Plots menu.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
@ConfigOption(name = "Hard Reset", desc = "Reset every slot to its original item.")
@ConfigEditorButton(buttonText = "Reset")
public Runnable hardReset = () -> {
GardenPlotIcon.INSTANCE.setHardReset(true);
HypixelCommands.INSTANCE.gardenDesk();
};
}
|