blob: 00ffce9dc1d585f3bfe199e26cc26d9a630056d4 (
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
29
30
31
32
33
34
35
36
37
38
|
package at.hannibal2.skyhanni.config.features.fishing;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorText;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class FishingHookDisplayConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Display the Hypixel timer until the fishing hook can be pulled out of the water/lava, only bigger and on your screen.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
@Expose
@ConfigOption(
name = "Custom Alert",
desc = "Replaces the default §c§l!!! §7Hypixel alert with your own custom one."
)
@ConfigEditorText
public String customAlertText = "&c&l!!!";
@Expose
@ConfigOption(
name = "Hide Armor Stand",
desc = "Hide the original armor stand from Hypixel when the SkyHanni display is enabled."
)
@ConfigEditorBoolean
public boolean hideArmorStand = true;
@Expose
@ConfigLink(owner = FishingHookDisplayConfig.class, field = "enabled")
public Position position = new Position(-475, -240, 3.4f, true);
}
|