Merge branch 'master' into feature/region-api-update

This commit is contained in:
sk89q 2014-08-22 20:48:34 -07:00
commit 88e7327af6
2 changed files with 2 additions and 2 deletions

View File

@ -329,7 +329,7 @@ private void loadConfiguration() {
}
blockPotionsAlways = getBoolean("gameplay.block-potions-overly-reliably", false);
simulateSponge = getBoolean("simulation.sponge.enable", true);
simulateSponge = getBoolean("simulation.sponge.enable", false);
spongeRadius = Math.max(1, getInt("simulation.sponge.radius", 3)) - 1;
redstoneSponges = getBoolean("simulation.sponge.redstone", false);

View File

@ -150,7 +150,7 @@ public void heal(CommandContext args,CommandSender sender) throws CommandExcepti
}
for (Player player : targets) {
player.setHealth(20);
player.setHealth(player.getMaxHealth());
player.setFoodLevel(20);
// Tell the user