Manually add the setDescriptionComponent(BaseComponent)

Lombok won't generate because of the overloading of setDescription(String).
This commit is contained in:
Joshua Küpper 2016-03-02 17:01:35 +01:00 committed by Thinkofdeath
parent 46e7f2dfc9
commit 0294fc5f20

View File

@ -145,6 +145,10 @@ public class ServerPing
return BaseComponent.toLegacyText( description );
}
public void setDescriptionComponent(BaseComponent description) {
this.description = description;
}
public BaseComponent getDescriptionComponent() {
return description;
}