Skip to content

Commit

Permalink
Fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
lscgh committed Feb 5, 2024
1 parent a5961fe commit 57d9f41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public FieldState getStateAt(int x, int y, int z) {
* @return The state at the given FieldPoint. If that is invalid, <i>FieldState.NEUTRAL</i> is returned.
*/
public FieldState getStateIfAny(FieldPoint position) {
Bukkit.getLogger().info("getStateIfAny " + position);
if(Bukkit.getLogger() != null) Bukkit.getLogger().info("getStateIfAny " + position);

try {
return this.getStateAt(position);
Expand Down

0 comments on commit 57d9f41

Please sign in to comment.