1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2026-03-13 14:18:23 +00:00

Fixes small issues

This commit is contained in:
2011-12-24 16:38:31 -02:00
parent 5b658a2eea
commit 3fc66cecdc
8 changed files with 30 additions and 24 deletions

View File

@@ -104,4 +104,11 @@ public class Lineage2Session {
public int getLoginKey2() {
return loginKey2;
}
@Override
public String toString() {
return "Lineage2Session [accountID=" + accountID + ", playKey1="
+ playKey1 + ", playKey2=" + playKey2 + ", loginKey1="
+ loginKey1 + ", loginKey2=" + loginKey2 + "]";
}
}