Skip to content

Commit

Permalink
Correct implementation of ViaVersionPlatformImpl#hasPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Jan 21, 2024
1 parent 57fcbe7 commit 18d8ef9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public boolean isPluginEnabled() {

@Override
public boolean hasPlugin(String s) {
return s.equalsIgnoreCase("ViaVersion") || s.equalsIgnoreCase("ViaBackwards") || s.equalsIgnoreCase("ViaRewind");
return false; // Used for ViaPlatform#getUnsupportedSoftwareClasses
}

@Override
Expand Down

0 comments on commit 18d8ef9

Please sign in to comment.