Add some sql to remove the cells and jails.

Untested.
This commit is contained in:
graywolf336
2014-03-05 16:56:13 -06:00
parent 295f6061a8
commit 0fabe1ff2e
3 changed files with 84 additions and 12 deletions

View File

@ -86,8 +86,8 @@ public class JailManager {
* @param name of the jail to remove
*/
public void removeJail(String name) {
plugin.getJailIO().removeJail(this.jails.get(name));
this.jails.remove(name);
plugin.getJailIO().removeJail(name);
}
/**