mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-07-01 13:14:44 +02:00
Exploit Config Tweaks
This commit is contained in:
@ -8,6 +8,7 @@ public class ConfigSectionExploitAcrobatics {
|
||||
|
||||
public static final int ACROBATIC_LOCATION_LIMIT_DEFAULT = 50;
|
||||
public static final boolean PREVENT_ACROBATICS_ABUSE_DEFAULT = true;
|
||||
public static final int TELEPORT_COOLDOWN_DEFAULT = 30;
|
||||
|
||||
@Setting(value = "Player-Fall-Location-Tracking",
|
||||
comment = "The amount of locations to keep track of for player falls." +
|
||||
@ -27,6 +28,14 @@ public class ConfigSectionExploitAcrobatics {
|
||||
"\nDefault value: "+PREVENT_ACROBATICS_ABUSE_DEFAULT)
|
||||
private boolean preventAcrobaticsAbuse = PREVENT_ACROBATICS_ABUSE_DEFAULT;
|
||||
|
||||
@Setting(value = "No-XP-After-Teleporting-Cooldown-In-Seconds", comment = "Prevents XP gains for Acrobatics for a set period of time after teleporting." +
|
||||
"\nDefault value: "+TELEPORT_COOLDOWN_DEFAULT)
|
||||
private int teleportCooldownSeconds = TELEPORT_COOLDOWN_DEFAULT;
|
||||
|
||||
public int getTeleportCooldownSeconds() {
|
||||
return teleportCooldownSeconds;
|
||||
}
|
||||
|
||||
public int getAcrobaticLocationLimit() {
|
||||
return acrobaticLocationLimit;
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ public class ConfigSuperAbilities {
|
||||
private ConfigSectionSuperAbilityCooldowns superAbilityCooldowns = new ConfigSectionSuperAbilityCooldowns();
|
||||
|
||||
@Setting(value = "Super-Ability-Max-Length",
|
||||
comment = "The maximum amount of time a player can use a super ability." +
|
||||
comment = "The maximum amount of time in seconds that a super ability can last." +
|
||||
"\nMost super abilities get longer as a player grows in skill.")
|
||||
private ConfigSectionSuperAbilityMaxLength superAbilityMaxLength = new ConfigSectionSuperAbilityMaxLength();
|
||||
|
||||
|
Reference in New Issue
Block a user