Skip to content

Commit f5b7238

Browse files
committed
fix note
1 parent 10c6115 commit f5b7238

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/com/azuredoom/levelingcore/compat/party/PartyPluginCompat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static void onXPGain(
7777
var killerPos = killerPlayer.getTransform().getPosition();
7878
var otherPos = otherPlayer.getTransform().getPosition();
7979

80-
// TODO: Update changes to JOML so this will be distance
80+
// TODO: Update 5 changes to JOML so this will be distance
8181
var distance = killerPos.distanceTo(otherPos);
8282
if (distance <= cfg.getPartyXPDistanceBlocks()) {
8383
eligible.add(uuid);

src/main/java/com/azuredoom/levelingcore/compat/party/PartyProCompat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static void onXPGain(
7676
var killerPos = killerPlayer.getTransform().getPosition();
7777
var otherPos = otherPlayer.getTransform().getPosition();
7878

79-
// TODO: Update changes to JOML so this will be distance
79+
// TODO: Update 5 changes to JOML so this will be distance
8080
var distance = killerPos.distanceTo(otherPos);
8181
if (distance <= cfg.getPartyXPDistanceBlocks()) {
8282
eligible.add(uuid);

src/main/java/com/azuredoom/levelingcore/utils/MobLevelingUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ public static int computeNearbyPlayersMeanBaseLevel(
352352
}
353353

354354
var pPos = playerRefComponent.getTransform().getPosition();
355-
// TODO: Update changes to JOML so this will be distanceSquared
355+
// TODO: Update 5 changes to JOML so this will be distanceSquared
356356
if (pPos.distanceSquaredTo(mobPos) <= nearbyRadiusSq) {
357357
var lvl = lvlService.getLevel(playerRefComponent.getUuid());
358358
sum += lvl;

0 commit comments

Comments
 (0)