Skip to content

Commit

Permalink
Merge branch 'resolve-223' into latest
Browse files Browse the repository at this point in the history
# Conflicts:
#	plugin/src/main/java/at/helpch/chatchat/util/ChannelUtils.java
  • Loading branch information
M0diis committed Feb 29, 2024
2 parents 234b13a + aa99703 commit 064f232
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static boolean isTargetWithinRadius(
final World sourceWorld = sourceLocation.getWorld();
final World targetWorld = targetLocation.getWorld();

if(sourceWorld != null && targetWorld != null && !sourceWorld.getName().equals(targetWorld.getName())) {
if(sourceWorld != null && targetWorld != null && !sourceWorld.getUID().equals(targetWorld.getUID())) {
return false;
}

Expand Down

0 comments on commit 064f232

Please sign in to comment.