Added missing break keywords in BukkitAdapter

This commit is contained in:
Intelli 2023-07-13 19:44:04 -06:00
parent bdde2d36be
commit 36ad62007f
1 changed files with 2 additions and 0 deletions

View File

@ -56,9 +56,11 @@ public class BukkitAdapter implements BukkitInterface {
break;
case BUKKIT_V1_19:
BukkitAdapter.ADAPTER = new Bukkit_v1_19();
break;
case BUKKIT_V1_20:
default:
BukkitAdapter.ADAPTER = new Bukkit_v1_20();
break;
}
}