Skip to content

Commit

Permalink
fix: Screen Triangulation -> Triangulation
Browse files Browse the repository at this point in the history
  • Loading branch information
cerus committed Sep 12, 2023
1 parent 69ce806 commit 1e06555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/src/main/java/dev/cerus/maps/plugin/MapsPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void onEnable() {
mapsConfig.getDouble("max-click-dist", 10d)
), this);

final String clickStrategy = useTriangulation ? "Screen Triangulation" : "Raycasting";
final String clickStrategy = useTriangulation ? "Triangulation" : "Raycasting";
this.getLogger().info("Strategy used for screen click handling: " + clickStrategy);
}

Expand Down

0 comments on commit 1e06555

Please sign in to comment.