From b6b3d84943e2f1944d18c1828683f49bc006193d Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Fri, 24 Oct 2014 22:28:29 -0500 Subject: [PATCH] Minor configuration code formatting --- .../0032-Remove-invalid-mob-spawner-tile-entities.patch | 2 +- ...move-specific-entities-that-fly-through-an-unloade.patch | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Spigot-Server-Patches/0032-Remove-invalid-mob-spawner-tile-entities.patch b/Spigot-Server-Patches/0032-Remove-invalid-mob-spawner-tile-entities.patch index ec254ee47..0f54cafd7 100644 --- a/Spigot-Server-Patches/0032-Remove-invalid-mob-spawner-tile-entities.patch +++ b/Spigot-Server-Patches/0032-Remove-invalid-mob-spawner-tile-entities.patch @@ -32,7 +32,7 @@ index ce3fb73..753bdda 100644 + public boolean removeInvalidMobSpawnerTEs; + private void removeInvalidMobSpawnerTEs() + { -+ removeInvalidMobSpawnerTEs = getBoolean( "remove-invalid-mob-spawner-tile-entities", true); ++ removeInvalidMobSpawnerTEs = getBoolean( "remove-invalid-mob-spawner-tile-entities", true ); + log( "Remove invalid mob spawner tile entities: " + removeInvalidMobSpawnerTEs ); + } } diff --git a/Spigot-Server-Patches/0035-Remove-specific-entities-that-fly-through-an-unloade.patch b/Spigot-Server-Patches/0035-Remove-specific-entities-that-fly-through-an-unloade.patch index 628d01db8..c5c0c770a 100644 --- a/Spigot-Server-Patches/0035-Remove-specific-entities-that-fly-through-an-unloade.patch +++ b/Spigot-Server-Patches/0035-Remove-specific-entities-that-fly-through-an-unloade.patch @@ -107,9 +107,9 @@ index 753bdda..a59fd42 100644 + public boolean removeUnloadedFallingBlocks; + private void removeUnloaded() + { -+ removeUnloadedEnderPearls = getBoolean("remove-unloaded.enderpearls", true); -+ removeUnloadedTNTEntities = getBoolean("remove-unloaded.tnt-entities", true); -+ removeUnloadedFallingBlocks = getBoolean("remove-unloaded.falling-blocks", true); ++ removeUnloadedEnderPearls = getBoolean( "remove-unloaded.enderpearls", true ); ++ removeUnloadedTNTEntities = getBoolean( "remove-unloaded.tnt-entities", true ); ++ removeUnloadedFallingBlocks = getBoolean( "remove-unloaded.falling-blocks", true ); + } } --