Skip to content

Commit

Permalink
Fix NoClassDefFoundError on Spigot 1.7.10 (fixes #51)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMicky-FR committed Aug 28, 2023
1 parent d4f1392 commit 43d8c13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ WorldEditSelectionVisualizer (WESV) is essentially the famous [WorldEditCUI](htt
- Highly customizable for the performance of your server
- Supports both [WorldEdit](https://enginehub.org/worldedit) and [FastAsyncWorldEdit](https://www.spigotmc.org/resources/fastasyncworldedit.13932/)
- Minecraft 1.7.10 to 1.20 support
- [PlaceholderAPI](https://github.com/PlaceholderAPI/PlaceholderAPI) support (you can use the placeholders `%wesv_toggled_selection%` and `%wesv_toggled_clipboard%`, `%wesv_volume_selection` and `%wesv_volume_clipboard%`)
- [PlaceholderAPI](https://github.com/PlaceholderAPI/PlaceholderAPI) support (you can use the placeholders `%wesv_toggled_selection%`, `%wesv_toggled_clipboard%`, `%wesv_volume_selection%` and `%wesv_volume_clipboard%`)

## Downloads

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public boolean isSelectionItem(@Nullable ItemStack item) {

private boolean isActionBarSupported() {
try {
Class.forName("net.md_5.bungee.api.chat.TextComponent");
Class.forName("net.md_5.bungee.api.ChatMessageType");
Player.class.getMethod("spigot");
SpigotActionBarAdapter.checkSupported();

Expand Down

0 comments on commit 43d8c13

Please sign in to comment.