Skip to content

Commit

Permalink
Merge pull request #15 from efrei-craft/development
Browse files Browse the repository at this point in the history
minifix 1.0.7
  • Loading branch information
DocSystem authored Oct 29, 2022
2 parents 5964aea + b2ffe3d commit 301f0ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = 'fr.efreicraft'
version = '1.0.6'
version = '1.0.7'

compileJava.options.encoding = 'UTF-8'

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/fr/efreicraft/eclobby/commands/Join.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command
Player player = (Player) sender;
player.sendMessage(ChatColor.GRAY + "Vous allez rejoindre " + args[0] + "...");
switch (args[0]) {
case "vanilla" -> Main.sendPlayerToServer(player, "vanillasurvival");
case "modded" -> Main.sendPlayerToServer(player, "moddedsurvival");
case "vanilla" -> Main.sendPlayerToServer(player, "vanilla");
case "modded" -> Main.sendPlayerToServer(player, "modded");
}
return true;
}
Expand Down

0 comments on commit 301f0ca

Please sign in to comment.