Skip to content

Commit a231826

Browse files
committed
Fix #246
1 parent c2a768d commit a231826

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
0.20.4 - Name Migration Fixes
2-
3-
- Add a temporary fix to account for the incorrect data provided by the PlayerDB.co API.
4-
- Fix a possible exploit when using poorly-written /back commands.
1+
0.20.5 - Paper Hotfix
52

3+
- Fix a bug where players could not enter overworld from nether

Plugin/src/main/java/xyz/kyngs/librelogin/paper/Blockers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void onTeleport(PlayerTeleportEvent event) {
5858
if (inLimbo(event.getPlayer())) {
5959
event.setCancelled(true);
6060
} else {
61-
if (!serverHandler.getLimboServers().contains(event.getFrom().getWorld()) && serverHandler.getLobbyServers().containsValue(event.getTo().getWorld())) {
61+
if (serverHandler.getLimboServers().contains(event.getTo().getWorld())) {
6262
event.setCancelled(true);
6363
}
6464
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
defaultTasks 'updateLicenses', 'shadowJar'
66

7-
version '0.20.4'
7+
version '0.20.5'
88

99
subprojects {
1010
version = rootProject.version

0 commit comments

Comments
 (0)