Added a check for when the old and new data folders are the same.
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
97fd93727d
commit
2427d3835e
1 changed files with 3 additions and 1 deletions
|
@ -72,7 +72,9 @@ public final class JavaPluginLoader implements PluginLoader {
|
||||||
File oldDataFolder = getDataFolder(file);
|
File oldDataFolder = getDataFolder(file);
|
||||||
|
|
||||||
// Found old data folder
|
// Found old data folder
|
||||||
if (dataFolder.isDirectory() && oldDataFolder.isDirectory()) {
|
if (dataFolder.equals(oldDataFolder)) {
|
||||||
|
// They are equal -- nothing needs to be done!
|
||||||
|
} else if (dataFolder.isDirectory() && oldDataFolder.isDirectory()) {
|
||||||
server.getLogger().log( Level.INFO, String.format(
|
server.getLogger().log( Level.INFO, String.format(
|
||||||
"While loading %s (%s) found old-data folder: %s next to the new one: %s",
|
"While loading %s (%s) found old-data folder: %s next to the new one: %s",
|
||||||
description.getName(),
|
description.getName(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue