diff --git a/README.md b/README.md index 5e71e5a..c00931f 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,16 @@ # minecord ## Feature -- Embed -- pingpong command -- online command -- reload command -- apply slash command -- async chat listener for discord -- support legacy version [Based for 1.12.2] +- Embed message +- Check discord ping latency +- Check online people in minecraft server +- use guild application command ### Configurations -[config.yml](https://github.com/Netherald/wild-discordmc/blob/master/src/main/resources/config.yml) +[config.yml](https://github.com/cube1dev/minecord/blob/master/src/main/resources/config.yml) ```yml ... -messageFormat : " : " +message_format : " : " ``` \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index b5eb5cd..9b3057c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,8 +1,6 @@ plugins { kotlin("jvm") version "1.7.0" id("com.github.johnrengelman.shadow") version "7.1.2" - - `maven-publish` } java { @@ -37,7 +35,7 @@ tasks { } compileKotlin { - kotlinOptions.jvmTarget = JavaVersion.VERSION_16.toString() + kotlinOptions.jvmTarget = JavaVersion.VERSION_17.toString() } processResources {