Skip to content

Commit

Permalink
Add missing space in EffSort#toString
Browse files Browse the repository at this point in the history
  • Loading branch information
TenFont committed Aug 23, 2024
1 parent 7b23d22 commit aa38d8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/effects/EffSort.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public boolean hasIndices() {

@Override
public String toString(@Nullable Event event, boolean debug) {
return "sort" + unsortedObjects.toString(event, debug)
return "sort " + unsortedObjects.toString(event, debug)
+ " in " + (descendingOrder ? "descending" : "ascending") + " order"
+ (mappingExpr == null ? "" : " by " + mappingExpr.toString(event, debug));
}
Expand Down

0 comments on commit aa38d8a

Please sign in to comment.