Fix createSection getting sections from itself. Fixes BUKKIT-1513

By: feildmaster <admin@feildmaster.com>
This commit is contained in:
Bukkit/Spigot
2012-04-13 10:19:45 -05:00
parent e700def943
commit e115cf3efa
2 changed files with 22 additions and 1 deletions

View File

@@ -243,7 +243,7 @@ public class MemorySection implements ConfigurationSection {
for (int i = 0; i < split.length - 1; i++) {
ConfigurationSection last = section;
section = getConfigurationSection(split[i]);
section = last.getConfigurationSection(split[i]);
if (section == null) {
section = last.createSection(split[i]);