diff --git a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/CountableLocation.java b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/CountableLocation.java index e58ada4e..8fcf14a2 100644 --- a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/CountableLocation.java +++ b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/CountableLocation.java @@ -22,7 +22,7 @@ public class CountableLocation extends DataLocation { public String toString() { final StringBuilder builder = new StringBuilder(256); builder.append("CountableLocation("); - builder.append(",x="); + builder.append("x="); builder.append(x); builder.append(",y="); builder.append(y); diff --git a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/DataLocation.java b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/DataLocation.java index 781627f9..e92f31c0 100644 --- a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/DataLocation.java +++ b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/DataLocation.java @@ -49,7 +49,7 @@ public class DataLocation { public String toString() { final StringBuilder builder = new StringBuilder(256); builder.append("Location("); - builder.append(",x="); + builder.append("x="); builder.append(x); builder.append(",y="); builder.append(y);