blob: bbff239296266ee2bddaf595fc41f353d684c5de (
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
25
26
27
28
|
package at.hannibal2.skyhanni.config.features.dungeon;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class DungeonChestConfig {
@Expose
@ConfigOption(name = "Show Used Kismet", desc = "Add a visual highlight for used Kismet Feathers to the Croesus inventory.")
@ConfigEditorBoolean
@FeatureToggle
public boolean showUsedKismets = true;
@Expose
@ConfigOption(name = "Kismet Amount", desc = "Show the amount of Kismet Feathers as stack size.")
@ConfigEditorBoolean
@FeatureToggle
public boolean kismetStackSize = true;
@Expose
@ConfigOption(name = "Croesus Limit Warning", desc = "Give a warning when you are close to being past Croesus limit.")
@ConfigEditorBoolean
@FeatureToggle
public boolean croesusLimit = true;
}
|