comment out forced key

This commit is contained in:
Jesse Boyd 2019-04-11 11:19:51 +10:00
parent d61e5f33f1
commit a7c5580db3
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -245,12 +245,12 @@ public class SessionManager {
* @return the key object
*/
protected UUID getKey(SessionKey key) {
String forcedKey = System.getProperty("worldedit.session.uuidOverride");
if (forcedKey != null) {
return UUID.fromString(forcedKey);
} else {
// String forcedKey = System.getProperty("worldedit.session.uuidOverride");
// if (forcedKey != null) {
// return UUID.fromString(forcedKey);
// } else {
return key.getUniqueId();
}
// }
}
/**