mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-05-02 19:28:41 +00:00
fix /back resetting on logout
This commit is contained in:
parent
b70f950479
commit
329f93a4f6
1 changed files with 3 additions and 1 deletions
|
@ -120,7 +120,9 @@ public class EssentialsPlayerListener implements Listener
|
||||||
{
|
{
|
||||||
user.toggleVanished();
|
user.toggleVanished();
|
||||||
}
|
}
|
||||||
user.setLastLocation();
|
if (user.getLastLocation() == null) {
|
||||||
|
user.setLastLocation();
|
||||||
|
}
|
||||||
user.updateActivity(false);
|
user.updateActivity(false);
|
||||||
user.dispose();
|
user.dispose();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue