Merge branch 'dev' into 'master'

quick fix description error

See merge request ajg0702/ajqueue!24
This commit is contained in:
ajgeiss0702
2021-08-24 22:55:52 +00:00
@@ -23,7 +23,9 @@ public class BungeeServerPing implements AdaptedServerPing {
@Override @Override
public String getPlainDescription() { public String getPlainDescription() {
return handle.getDescriptionComponent().toPlainText(); BaseComponent desc = handle.getDescriptionComponent();
if(desc == null) return "";
return desc.toPlainText();
} }
@Override @Override