1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-25 21:59:08 +02:00

Adding extra mobs to essentials protect, changing some default settings.

This commit is contained in:
KHobbits
2011-11-28 12:55:54 +00:00
parent ccfc3b8d78
commit 4a83d17fec
3 changed files with 6 additions and 4 deletions

View File

@@ -189,13 +189,13 @@ public class Settings implements ISettings
@Override
public double getTeleportCooldown()
{
return config.getDouble("teleport-cooldown", 60);
return config.getDouble("teleport-cooldown", 0);
}
@Override
public double getHealCooldown()
{
return config.getDouble("heal-cooldown", 60);
return config.getDouble("heal-cooldown", 0);
}
@Override
@@ -246,7 +246,7 @@ public class Settings implements ISettings
@Override
public boolean getReclaimSetting()
{
return config.getBoolean("reclaim-onlogout", true);
return config.getBoolean("reclaim-onlogout", false);
}
@Override