Merge pull request #1 from Mojang/master

Fix long argument examples
This commit is contained in:
PROgrm_JARvis 2018-09-29 18:16:14 +03:00 committed by GitHub
commit 56baf2e247
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,4 +84,9 @@ public class LongArgumentType implements ArgumentType<Long> {
return "longArg(" + minimum + ", " + maximum + ")";
}
}
@Override
public Collection<String> getExamples() {
return EXAMPLES;
}
}