Fix long standing bug where extra nodes in data.yml would be created

There was a bug where you would "randomly" get extra nodes in your
data.yml like jailnamecells, this caused problems earlier which was
avoided by not loading invalid jails but now the real issue is fixed and
those extra nodes shouldn't appear again.
This commit is contained in:
graywolf336 2015-07-24 12:31:06 -05:00
parent 9ec7f389db
commit b99520b10b

View File

@ -1157,7 +1157,7 @@ public class JailIO {
break; break;
default: default:
if(flat != null) { if(flat != null) {
flat.set("jails." + j.getName() + "cells." + c.getName(), null); flat.set("jails." + j.getName() + ".cells." + c.getName(), null);
try { try {
flat.save(new File(pl.getDataFolder(), "data.yml")); flat.save(new File(pl.getDataFolder(), "data.yml"));