summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2013-03-20 23:24:45 +0000
committerKHobbits <rob@khobbits.co.uk>2013-03-20 23:24:45 +0000
commit3f4bea039d65f91a34e2022c991f067de4feb7cc (patch)
tree4932059c2e2ffa128e24513b795035ca6f74532d
parentd712a5920366d23d8646b3d73fef4aadea4a273e (diff)
downloadEssentials-3f4bea039d65f91a34e2022c991f067de4feb7cc.tar
Essentials-3f4bea039d65f91a34e2022c991f067de4feb7cc.tar.gz
Essentials-3f4bea039d65f91a34e2022c991f067de4feb7cc.tar.lz
Essentials-3f4bea039d65f91a34e2022c991f067de4feb7cc.tar.xz
Essentials-3f4bea039d65f91a34e2022c991f067de4feb7cc.zip
Add the max-walk-speed config variable back to the default config file.
-rw-r--r--Essentials/src/com/earth2me/essentials/Settings.java2
-rw-r--r--Essentials/src/config.yml3
2 files changed, 4 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/Settings.java b/Essentials/src/com/earth2me/essentials/Settings.java
index d1bd94489..cb642aaf5 100644
--- a/Essentials/src/com/earth2me/essentials/Settings.java
+++ b/Essentials/src/com/earth2me/essentials/Settings.java
@@ -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);
}
diff --git a/Essentials/src/config.yml b/Essentials/src/config.yml
index 7d31aaee3..fd698ba9b 100644
--- a/Essentials/src/config.yml
+++ b/Essentials/src/config.yml
@@ -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