mirror of
https://github.com/BentoBoxWorld/AcidIsland.git
synced 2025-01-10 10:27:44 +01:00
Added a list of available potion effects in config comments
This commit is contained in:
parent
f2b53bb2f8
commit
f782c9eeb2
@ -82,14 +82,30 @@ public class AISettings implements WorldSettings {
|
||||
@ConfigEntry(path = "acid.damage.delay")
|
||||
private long acidDamageDelay = 2;
|
||||
|
||||
@ConfigComment("Potion effects from going into acid water")
|
||||
@ConfigComment("You can list multiple effects")
|
||||
@ConfigComment("Potion effects from going into acid water.")
|
||||
@ConfigComment("You can list multiple effects.")
|
||||
@ConfigComment("Available effects are:")
|
||||
@ConfigComment(" BLINDNESS")
|
||||
@ConfigComment(" CONFUSION")
|
||||
@ConfigComment(" HUNGER")
|
||||
@ConfigComment(" POISON")
|
||||
@ConfigComment(" SLOW")
|
||||
@ConfigComment(" SLOW_DIGGING")
|
||||
@ConfigComment(" WEAKNESS")
|
||||
@ConfigEntry(path = "acid.damage.effects")
|
||||
@Adapter(PotionEffectListAdapter.class)
|
||||
private List<PotionEffectType> acidEffects = new ArrayList<>();
|
||||
|
||||
@ConfigComment("Potion effects from going into acid rain and snow")
|
||||
@ConfigComment("Potion effects from going into acid rain and snow.")
|
||||
@ConfigComment("You can list multiple effects.")
|
||||
@ConfigComment("Available effects are:")
|
||||
@ConfigComment(" BLINDNESS")
|
||||
@ConfigComment(" CONFUSION")
|
||||
@ConfigComment(" HUNGER")
|
||||
@ConfigComment(" POISON")
|
||||
@ConfigComment(" SLOW")
|
||||
@ConfigComment(" SLOW_DIGGING")
|
||||
@ConfigComment(" WEAKNESS")
|
||||
@ConfigEntry(path = "acid.damage.rain-effects", since = "1.9.1")
|
||||
@Adapter(PotionEffectListAdapter.class)
|
||||
private List<PotionEffectType> acidRainEffects = new ArrayList<>();
|
||||
|
Loading…
Reference in New Issue
Block a user