Skip to content

Commit 752f38c

Browse files
authored
Added Horizontal Ellipsis character to the spread expression. (#132)
Adds the … character to ExprSpread, this character is usually used in IOS devices, this pr allows people using those devices to use this character.
1 parent 882f255 commit 752f38c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/btk5h/skriptmirror/skript/ExprSpread.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
public class ExprSpread<T> implements Expression<T> {
2727
static {
2828
//noinspection unchecked
29-
Skript.registerExpression(ExprSpread.class, Object.class, ExpressionType.COMBINED, "...%object%");
29+
Skript.registerExpression(ExprSpread.class, Object.class, ExpressionType.COMBINED, "...%object%", "…%object%");
3030
}
3131

3232
private Expression<Object> object;

0 commit comments

Comments
 (0)