aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/main/java/com/leonardobishop
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/main/java/com/leonardobishop')
-rw-r--r--common/src/main/java/com/leonardobishop/quests/common/player/QPlayerManager.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/common/src/main/java/com/leonardobishop/quests/common/player/QPlayerManager.java b/common/src/main/java/com/leonardobishop/quests/common/player/QPlayerManager.java
index b9a814a0..1526fd9f 100644
--- a/common/src/main/java/com/leonardobishop/quests/common/player/QPlayerManager.java
+++ b/common/src/main/java/com/leonardobishop/quests/common/player/QPlayerManager.java
@@ -39,12 +39,12 @@ public class QPlayerManager {
Objects.requireNonNull(uuid, "uuid cannot be null");
QPlayer qPlayer = qPlayers.get(uuid);
- if (qPlayer == null) {
- plugin.getQuestsLogger().debug("QPlayer of " + uuid + " is null, but was requested:");
- if (plugin.getQuestsLogger().getServerLoggingLevel() == QuestsLogger.LoggingLevel.DEBUG) {
- Thread.dumpStack();
- }
- }
+// if (qPlayer == null) {
+// plugin.getQuestsLogger().debug("QPlayer of " + uuid + " is null, but was requested:");
+// if (plugin.getQuestsLogger().getServerLoggingLevel() == QuestsLogger.LoggingLevel.DEBUG) {
+// Thread.dumpStack();
+// }
+// }
return qPlayer;
}