mirror of
https://github.com/essentials/Essentials.git
synced 2025-02-24 08:22:56 +01:00
Add the max-walk-speed config variable back to the default config file.
This commit is contained in:
parent
d712a59203
commit
3f4bea039d
@ -1022,7 +1022,7 @@ public class Settings implements ISettings
|
||||
@Override
|
||||
public double getMaxFlySpeed()
|
||||
{
|
||||
double maxSpeed = config.getDouble("max-fly-speed", 1.0);
|
||||
double maxSpeed = config.getDouble("max-fly-speed", 0.8);
|
||||
return maxSpeed > 1.0 ? 1.0 : Math.abs(maxSpeed);
|
||||
}
|
||||
|
||||
|
@ -384,6 +384,9 @@ login-attack-delay: 5
|
||||
#Set the max fly speed, values range from 0.1 to 1.0
|
||||
max-fly-speed: 0.8
|
||||
|
||||
#Set the max walk speed, values range from 0.1 to 1.0
|
||||
max-walk-speed: 0.8
|
||||
|
||||
#Set the maximum amount of mail that can be sent within a minute.
|
||||
mails-per-minute: 1000
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user