Add debug logging for logout effects

This commit is contained in:
2025-04-09 22:29:57 -07:00
parent bb643202df
commit 7592547a35
+8
View File
@@ -706,6 +706,14 @@ public class WorldServer {
return;
}
// DEBUG: Log all current effects on the player
Logger.info("=== EFFECTS ON LOGOUT for " + player.getFirstName() + " ===");
for (Effect e : player.getEffects().values()) {
Logger.info("Effect: " + e.getName());
}
Iterator<Effect> it = player.getEffects().values().iterator();
while (it.hasNext()) {
Effect effect = it.next();