blob: 4b91c3950fa163867802b4b4a4475c57265d6fa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package at.hannibal2.skyhanni.config.features.misc;
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 PocketSackInASackConfig {
@Expose
@ConfigOption(name = "Show in Overlay", desc = "Show the number of Pocket Sack-In-A-Sack applied on a sack icon as an overlay.")
@ConfigEditorBoolean
@FeatureToggle
public boolean showOverlay = false;
@Expose
@ConfigOption(name = "Replace in Lore", desc = "Replace how text is displayed in lore.\n" +
"Show §eis stitched with 2/3...\n" +
"§7Instead of §eis stitched with two...")
@ConfigEditorBoolean
@FeatureToggle
public boolean replaceLore = true;
}
|