diff options
author | mdxd44 <ogurec332@mail.ru> | 2021-12-23 12:15:10 +0900 |
---|---|---|
committer | mdxd44 <ogurec332@mail.ru> | 2021-12-23 12:15:10 +0900 |
commit | 5fe79b92327c082384068fa45c3b1d2691800e3d (patch) | |
tree | ae8ab7382d969baa807da7d94c2a81bff8ba0405 /src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java | |
parent | cff1b4a22bb47c8bcf064d5e8da8c7d7ef67ea52 (diff) | |
download | LimboAuth-5fe79b92327c082384068fa45c3b1d2691800e3d.tar.gz LimboAuth-5fe79b92327c082384068fa45c3b1d2691800e3d.tar.bz2 LimboAuth-5fe79b92327c082384068fa45c3b1d2691800e3d.zip |
Titles, auth time, bossbar, max and min auth time, unsafe passwords. (Closes LimboAPI#8)
Diffstat (limited to 'src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java')
-rw-r--r-- | src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java b/src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java index 27dff72..b0e6cf4 100644 --- a/src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java +++ b/src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java @@ -49,7 +49,7 @@ public class DestroySessionCommand implements SimpleCommand { return; } - this.plugin.removePlayerFromCache((Player) source); + this.plugin.removePlayerFromCache(((Player) source).getUsername()); source.sendMessage(this.successful); } |