Skip to content

Commit

Permalink
More transferOld workarounds
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Jun 13, 2013
1 parent e6bdfb8 commit bba59d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/citizensnpcs/api/util/DataKey.java
Expand Up @@ -140,7 +140,7 @@ protected void transferOld(String key) {
return;
transferring = true;
String repl = key.replace("-", "");
if (repl.isEmpty() || !keyExists(repl)) {
if (repl.isEmpty() || createRelativeKey(repl).isEmpty() || !keyExists(repl)) {
transferring = false;
return;
}
Expand Down

0 comments on commit bba59d6

Please sign in to comment.